/* ==========================================================================
   Sri Veeralakshmi Plywoods - Custom Premium Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS VARIABLES */
:root {
    /* Color Palette */
    --primary-color: #0B1F3A;      /* Dark Royal Blue */
    --primary-light: #162E4E;     /* Lighter Blue for gradients/hover */
    --secondary-color: #FFFFFF;    /* Pure White */
    --accent-color: #8B5A2B;       /* Wood Brown */
    --accent-light: #A77343;       /* Light Wood Accent */
    --bg-light: #F5F7FA;           /* Soft Gray Background */
    --text-dark: #222B38;          /* Slate Dark Gray for main text */
    --text-muted: #5C6E82;         /* Muted blue-gray for paragraphs */
    --btn-hover: #1E90FF;          /* Sky Blue */
    --success-color: #2ECC71;      /* WhatsApp/Success green */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 31, 58, 0.1), 0 4px 6px -2px rgba(11, 31, 58, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(11, 31, 58, 0.15), 0 10px 10px -5px rgba(11, 31, 58, 0.04);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-btn: 'Montserrat', sans-serif;
    
    /* Dimensions & Transitions */
    --header-height: 85px;
    --header-shrink-height: 70px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* BASE RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-shrink-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-family: var(--font-btn);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.05rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 43, 0.4), 0 0 10px rgba(139, 90, 43, 0.2);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.2);
}

.btn-secondary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background-color: var(--success-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-whatsapp-header:hover {
    background-color: #27ae60;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

.btn-call-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-call-header:hover {
    background-color: var(--btn-hover);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    transform: translateY(-2px);
}

/* HEADER SECTION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    height: var(--header-shrink-height);
    background-color: rgba(11, 31, 58, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.header.scrolled .logo-text {
    color: var(--secondary-color);
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-link:hover, 
.header.scrolled .nav-link.active {
    color: var(--secondary-color);
}

.header.scrolled .nav-link::after {
    background-color: var(--accent-light);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    fill: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.logo-text span {
    font-size: 0.75rem;
    font-family: var(--font-btn);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

.header.scrolled .mobile-toggle span {
    background-color: var(--secondary-color);
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.9) 0%, rgba(11, 31, 58, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    color: var(--secondary-color);
}

.hero-tagline {
    font-family: var(--font-btn);
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--secondary-color);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-subheading {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 400;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.hero-btns {
    display: flex;
    gap: 16px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

/* Animations Triggered when slide becomes active */
.hero-slide.active .hero-tagline,
.hero-slide.active h2,
.hero-slide.active .hero-subheading,
.hero-slide.active .hero-btns {
    transform: translateY(0);
    opacity: 1;
}

/* Hero Controls */
.hero-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.hero-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(11, 31, 58, 0.3);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 4px solid var(--accent-color);
    border-radius: var(--border-radius-md);
    transform: translate(15px, 15px);
    z-index: -1;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius-md);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-color);
}

.about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.about-badge-text {
    font-family: var(--font-btn);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content h3 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    line-height: 1.25;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feat-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.about-feat-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* PRODUCTS SECTION */
.bg-light-sec {
    background-color: var(--bg-light);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.product-tab {
    padding: 12px 24px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 50px;
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tab:hover, .product-tab.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-tab.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(11, 31, 58, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.08);
}

.product-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: var(--font-btn);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--accent-color);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(11, 31, 58, 0.06);
    padding-top: 16px;
}

.product-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* GALLERY SECTION */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.gallery-btn:hover, .gallery-btn.active {
    color: var(--accent-color);
}

.gallery-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.gallery-btn:hover::after, .gallery-btn.active::after {
    width: 60%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 58, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.gallery-item:hover .gallery-zoom-icon {
    transform: translateY(0);
}

.gallery-item-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-tag {
    font-family: var(--font-btn);
    font-size: 0.7rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.gallery-item:hover .gallery-item-tag {
    transform: translateY(0);
}

/* WHY CHOOSE US SECTION */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(11, 31, 58, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 90, 43, 0.15);
}

.why-card:hover::before {
    height: 100%;
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 90, 43, 0.08);
    color: var(--accent-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon-box {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

.why-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--bg-light);
    overflow: hidden;
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.review-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(139, 90, 43, 0.08);
    pointer-events: none;
}

.review-rating {
    color: #F1C40F;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.review-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(11, 31, 58, 0.1);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.review-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-card-box {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(11, 31, 58, 0.03);
}

.contact-card-box h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(11, 31, 58, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-details h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 12px;
    display: inline-block;
}

.detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-content h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.detail-content p, .detail-content a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.detail-content a:hover {
    color: var(--accent-light);
}

/* Map Card */
.map-card {
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 31, 58, 0.05);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FOOTER DESIGN */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-about h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-col-about span {
    font-family: var(--font-btn);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item::before {
    content: '→';
    color: var(--accent-color);
    transition: var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-copyright {
    font-size: 0.85rem;
}

.footer-admin-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-admin-link:hover {
    color: var(--accent-color);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    background-color: #27ae60;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--success-color);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* PRODUCT INQUIRY MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 31, 58, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--secondary-color);
    width: 100%;
    max-width: 550px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 5px solid var(--accent-color);
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.75rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    opacity: 1;
    color: var(--accent-color);
}

.modal-body {
    padding: 30px;
}

/* LIGHTBOX FOR GALLERY */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--secondary-color);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */

/* 1️⃣ Desktop Limits & Container Width */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
}

/* 2️⃣ Tablet Transition / iPad Pro Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --header-height: 75px;
        --header-shrink-height: 65px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Drawer Navigation Menu for Mobile & Tablet */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--secondary-color);
    }
    
    .nav-link::after {
        background-color: var(--accent-light);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: var(--secondary-color);
    }
    
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background-color: var(--secondary-color);
    }
    
    .header-actions .btn {
        display: none; /* Hide header buttons on tablet/mobile to fit logo */
    }

    .reviews-carousel {
        height: 340px;
    }
}

/* 3️⃣ Large Tablet Breakpoint (max-width: 820px) */
@media (max-width: 820px) {
    .hero h2 {
        font-size: 2.75rem;
    }
    
    .hero-subheading {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* 4️⃣ Standard Tablet Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .hero-nav, .hero-dots {
        bottom: 30px;
    }
    
    .hero-nav {
        right: 24px;
    }
    
    .about-badge {
        padding: 16px;
        bottom: 20px;
        left: 20px;
    }
    
    .about-badge-num {
        font-size: 1.75rem;
    }
}

/* 5️⃣ Small Tablet Breakpoint (max-width: 600px) */
@media (max-width: 600px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* 6️⃣ Android & Large Mobile Breakpoint (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    .reviews-carousel {
        height: 420px;
    }

    .review-slide {
        padding: 24px 16px;
    }
    
    .review-text {
        font-size: 0.95rem;
        max-height: 180px;
        overflow-y: auto;
    }
    
    .about-badge {
        padding: 12px;
        bottom: 15px;
        left: 15px;
    }
    
    .about-badge-num {
        font-size: 1.5rem;
    }
    
    .about-badge-text {
        font-size: 0.7rem;
    }
}

/* 7️⃣ Standard & Small Mobile Breakpoint (max-width: 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    /* Logo scaling to prevent wrapping or hamburger collision on 320px screens */
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-wrapper {
        gap: 8px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .hero h2 {
        font-size: 1.65rem;
    }
    
    .hero-subheading {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .reviews-carousel {
        height: 450px;
    }
}
