/* Base Styles & Variables */
:root {
    --primary: #cba052; /* Gold color */
    --primary-hover: #b88e44;
    --dark: #1e1e1e;
    --darker: #111111;
    --light: #f9f9f9;
    --text-main: #333333;
    --text-light: #777777;
    --border: #e0e0e0;
    --green: #25D366; /* WhatsApp */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--primary); }
.text-green { color: var(--green); }
.font-bold { font-weight: 700; }
.bg-dark { background-color: var(--dark); color: #fff; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

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

.btn-outline:hover {
    background-color: var(--primary);
}

.btn-outline-full {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary);
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 15px;
}

.btn-outline-full:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
}

.subtitle-line {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 10px;
}
.subtitle-line::before, .subtitle-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--primary);
}
.subtitle-line::before { right: 100%; margin-right: 15px; }
.subtitle-line::after { left: 100%; margin-left: 15px; }
.subtitle-line.left-aligned::before { display: none; }

.section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
}

/* Topbar */
.topbar {
    background-color: #111;
    color: #ccc;
    font-size: 12px;
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left i { margin-right: 5px; color: var(--primary); }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right a {
    color: #ccc;
    border: 1px solid #444;
    border-radius: 50%;
    width: 24px; height: 24px;
    display: flex; justify-content: center; align-items: center;
}
.topbar-right a:hover { color: var(--primary); border-color: var(--primary); }

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a { display: block; }
.logo h2 { font-size: 24px; font-weight: 700; letter-spacing: 1px; color: #111;}
.logo h2 span { color: var(--primary); }
.logo p { font-size: 10px; color: var(--text-light); letter-spacing: 1px; }

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.nav-links > a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid var(--primary);
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary);
}
.dropdown-content a::after {
    display: none !important;
}

/* Mega Menu Dropdown */
.nav-links { position: static; } /* Override for mega menu positioning */
.dropdown.mega-dropdown {
    position: static;
}

/* Invisible bridge to prevent hover loss when moving mouse to dropdown */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    padding: 40px 20px;
}
.mega-dropdown:hover .mega-menu {
    display: flex;
    justify-content: space-between;
}
.mega-col {
    flex: 1;
    padding: 0 25px;
    border-right: 1px solid #f0f0f0;
}
.mega-col:last-child {
    border-right: none;
}
.mega-col h4 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}
.mega-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}
.mega-col a {
    color: #555;
    padding: 12px 0;
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #fcfcfc;
}
.mega-col a:last-child {
    border-bottom: none;
}
.mega-col a:hover {
    color: var(--primary);
    padding-left: 8px;
    background-color: #fafafa;
}

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

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}
.whatsapp-contact i { font-size: 20px; }

.icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
}
.icons a:not(.btn):hover { color: var(--primary); }

.cart-icon {
    position: relative;
}
.cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: #fff;
    font-size: 10px;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-slider {
    position: relative;
    min-height: 500px;
    background-color: #1a1a1a; /* fallback */
    overflow: hidden;
}
.hero-slider .slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 60px 0;
    z-index: 1;
}
.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slider .slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.badge-premium {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-slider h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 300;
}
.hero-slider h1 .text-gold { font-weight: 600; }

.hero-slider p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.slider-nav:hover { background-color: var(--primary); }
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-progress-bar {
    opacity: 0;
    visibility: hidden;
    position: relative;
    height: 4px;
    background: #cca356;
    width: 0%;
    z-index: 100;
    transition: none !important;
}

.slider-progress-bar::after {
    content: '';
    position: absolute;
    right: -4px; /* Slight offset to center it on the tip */
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #cca356;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(204, 163, 86, 0.8);
}



@media (max-width: 768px) {
    .slider-progress-bar {
        display: block;
        opacity: 1;
        visibility: visible;
        height: 3px;
    }
    .slider-progress-bar::after {
        width: 10px;
        height: 10px;
        right: -4px;
    }
}

/* Features Bar */
.features-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.features-inner {
    display: flex;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item .icon {
    width: 50px; height: 50px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--primary);
    font-size: 20px;
}

.feature-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.feature-item p { font-size: 12px; color: #aaa; }

/* Categories */
.categories {
    padding: 80px 0;
}

.category-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
    min-height: 280px;
}

.cat-content {
    flex: 0 0 50%;
    max-width: 50%;
    z-index: 2;
}

.cat-content h3 { font-size: 24px; margin-bottom: 10px; }
.cat-content p { font-size: 14px; color: #555; margin-bottom: 25px; }

.cat-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 90%;
    object-fit: contain;
}

/* Popular Products */
.popular-products {
    padding: 40px 0 40px;
    background-color: #f5f5f5;
    scroll-margin-top: 70px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
}
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.product-card .img-wrapper {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 40px;
}

.product-info .price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-info .rating {
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 10px;
}
.product-info .rating span { color: #888; margin-left: 5px; }

/* WhatsApp Banner */
.whatsapp-banner {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
}

.whatsapp-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--darker);
    border-radius: 8px;
    padding: 25px 40px;
}

.whatsapp-left, .whatsapp-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-icon-large, .phone-icon-large {
    font-size: 36px;
}
.whatsapp-icon-large { color: var(--green); }
.phone-icon-large { color: var(--primary); }

.whatsapp-text h3, .phone-text h3 { font-size: 20px; margin-bottom: 5px; }
.whatsapp-text p, .phone-text p { font-size: 14px; color: #aaa; }

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col { flex: 1; min-width: 200px; }
.brand-col { flex: 1.5; padding-right: 40px; }

.footer-logo h2 { font-size: 24px; color: #fff; margin-bottom: 5px; }
.footer-logo h2 span { color: var(--primary); }
.footer-logo p { font-size: 10px; letter-spacing: 1px; margin-bottom: 20px; }
.brand-desc { font-size: 14px; text-align: justify; }

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--primary); }

.contact-info li { margin-bottom: 10px; font-size: 14px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 35px; height: 35px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
}
.social-links a:hover { background-color: var(--primary); border-color: var(--primary); color: #fff; }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    background-color: #0a0a0a;
}

/* About Us Page Responsive */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Us Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Topbar */
@media (max-width: 768px) {
    .topbar {
        font-size: 11px;
        padding: 8px 0;
    }
    .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
    .topbar-left {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .topbar-left span {
        border-right: none !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        display: block;
    }
    .topbar-left span:nth-child(2) {
        display: none !important;
    }
    .topbar-right {
        justify-content: flex-end;
        gap: 6px;
    }
    .topbar-right span {
        display: none; /* Hide "Follow Us:" text to save space on mobile */
    }
    .topbar-right a {
        width: 24px;
        height: 24px;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Responsive Header */
@media (max-width: 991px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .menu-toggle {
        display: flex;
        font-size: 24px;
        color: var(--dark);
        cursor: pointer;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        z-index: 99;
        gap: 15px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        align-items: stretch;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links > a, 
    .nav-links > .dropdown {
        width: 100%;
    }
    .nav-links > .dropdown {
        display: block;
        height: auto;
    }
    .nav-links > a, 
    .nav-links > .dropdown > a {
        font-size: 16px;
        padding: 8px 0;
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
        display: block;
        text-align: left;
    }
    .nav-links > a::after {
        display: none; /* Hide the underline animation on mobile */
    }
    .header-actions {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    .logo h2 {
        font-size: 17px;
    }
    .logo p {
        font-size: 8px;
    }
    .header-actions {
        gap: 10px;
    }
    .whatsapp-contact {
        display: none; /* Hide whatsapp entirely on mobile view */
    }
    .icons {
        gap: 10px;
    }
    .icons > a:not(.menu-toggle) {
        display: none; /* Hide user and cart icons on mobile */
    }
    .menu-toggle {
        font-size: 20px;
    }
    /* Hero Section Responsive */
    .hero-slider {
        min-height: 280px;
    }
    .hero-slider .slide {
        padding: 20px 0;
    }
    .hero-slider h1 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .hero-slider p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .badge-premium {
        font-size: 9px;
        padding: 3px 8px;
        margin-bottom: 10px;
    }
    .hero-btns {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        max-width: none;
    }
    .hero-btns .btn {
        padding: 10px 12px;
        font-size: 10px;
        text-align: center;
        white-space: nowrap;
        width: auto;
    }
    .slider-nav {
        display: none !important; /* Hide slider arrows on mobile view */
    }
    /* Features Bar Responsive */
    .features-inner {
        flex-wrap: wrap;
        gap: 20px 10px;
        justify-content: space-between;
    }
    .feature-item {
        width: calc(50% - 5px);
        gap: 8px;
    }
    .feature-item .icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        flex-shrink: 0;
    }
    .feature-item h4 {
        font-size: 11px;
    }
    .feature-item p {
        font-size: 9px;
        line-height: 1.2;
    }
    
    /* Section Headers Responsive */
    .categories, .popular-products {
        padding: 40px 0; /* Reduce padding on mobile */
    }
    .section-header, .categories.text-center, .popular-products.text-center {
        text-align: left !important;
    }
    .section-header {
        margin-bottom: 25px !important;
    }
    .subtitle-line {
        font-size: 11px;
    }
    .subtitle-line::before {
        display: none; /* Remove left line when left aligned */
    }
    .section-header h2 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }
    .section-header p {
        font-size: 12px;
    }
    
    /* Categories Grid Responsive */
    .category-grid {
        flex-direction: column;
        gap: 20px;
    }
    .category-card {
        padding: 20px;
        min-height: 220px;
    }
    .cat-content {
        flex: 0 0 60%;
        max-width: 60%;
    }
    .cat-content h3 {
        font-size: 18px;
    }
    .cat-content p {
        font-size: 11px;
        margin-bottom: 15px;
    }
    .cat-content .btn {
        padding: 8px 12px;
        font-size: 10px;
        white-space: nowrap;
        display: inline-block;
    }
    .cat-img {
        width: 45%;
        height: 80%;
    }
    
    /* Product Grid Responsive */
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-info .btn-outline-full {
        padding: 8px 15px;
        font-size: 11px;
        margin-top: 10px;
    }
    .view-all-wrapper {
        text-align: center;
    }
    .view-all-wrapper .btn {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }
    
    /* Split Section Responsive */
    .split-section {
        flex-direction: column !important;
        margin-top: 20px !important;
    }
    .split-left, .split-right {
        padding: 20px 20px !important;
    }
    .split-middle {
        flex: none !important;
        height: 250px !important;
    }
    .split-left > img {
        max-height: 80px !important;
        bottom: auto !important;
        top: 20px !important;
        left: auto !important;
        right: 20px !important;
    }
    .about-content h2 {
        font-size: 24px !important;
    }
    .about-content p {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    .about-features {
        flex-wrap: wrap;
        gap: 15px !important;
        margin-bottom: 25px !important;
        justify-content: space-between;
    }
    .about-features .a-feature {
        flex: 1;
    }
    .about-features i {
        font-size: 22px !important;
    }
    .wc-features {
        gap: 20px !important;
        margin-top: 20px !important;
    }
    .wc-item .icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .wc-item h5 {
        font-size: 14px !important;
    }
    .wc-item p {
        font-size: 12px !important;
    }
    
    /* Testimonials Responsive */
    .testimonials {
        padding: 40px 0 !important;
    }
    .testimonial-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        gap: 20px !important;
        padding-bottom: 20px !important;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    .testimonial-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .t-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        padding: 30px 20px !important;
    }
    .t-card p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    .t-card .fa-quote-right {
        font-size: 40px !important;
        top: 20px !important;
        right: 20px !important;
    }
    
    /* Brands Responsive */
    .brands {
        padding: 40px 0 !important;
    }
    .brands-title {
        gap: 10px !important;
    }
    .brands-title span:nth-child(2) {
        font-size: 12px !important;
    }
    .brands-title span:nth-child(1), .brands-title span:nth-child(3) {
        width: 20px !important;
    }
    .brand-logos {
        gap: 20px 15px !important;
        justify-content: center !important;
    }
    .brand-logos img {
        max-height: 35px !important;
        max-width: calc(33% - 15px);
        object-fit: contain;
    }

    /* WhatsApp Banner Responsive */
    .whatsapp-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    .whatsapp-text h3, .phone-text h3 {
        font-size: 16px;
    }
    .whatsapp-icon-large, .phone-icon-large {
        font-size: 28px;
    }
    .whatsapp-left, .whatsapp-right {
        gap: 15px;
    }
}

/* Our Services Section */
.our-services {
    padding: 60px 0;
    background-color: var(--light);
}
.our-services h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}
.service-search-box {
    max-width: 600px;
    margin: 0 auto 40px;
}
.service-search-box input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
}
.service-search-box input:focus {
    box-shadow: 0 0 0 3px rgba(203, 160, 82, 0.2);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
.service-item {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
}
.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(203, 160, 82, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.service-item:hover .service-icon {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(203, 160, 82, 0.3);
}
.service-item p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .our-services {
        padding: 40px 0;
        text-align: left !important;
    }
    .our-services h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .service-search-box {
        margin-bottom: 30px;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 8px;
        border-radius: 10px;
    }
    .service-item p {
        font-size: 11px;
        text-align: center;
        line-height: 1.3;
    }
}

/* SEO & Trust Content Section */
.seo-content-section {
    padding: 70px 0;
    background-color: #fdfdfd;
    border-top: 1px solid #eaeaea;
}
.seo-block {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.seo-block:last-child {
    margin-bottom: 0;
}
.seo-heading {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    font-weight: 800;
}
.seo-heading::before,
.seo-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 160, 82, 0.3), transparent);
    margin: 15px 0;
}
.seo-block p {
    font-size: 14px;
    color: #555;
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 15px;
}
.seo-block p strong {
    color: var(--dark);
    font-weight: 700;
}
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.trust-item {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.trust-item p {
    margin: 0;
    text-align: left;
    font-size: 14px;
    color: #444;
}
.trust-item .text-green {
    color: var(--green);
    font-size: 20px;
    min-width: 25px;
    text-align: center;
}
.seo-call {
    font-size: 16px;
    color: var(--primary) !important;
    font-weight: 700;
    margin-top: 25px !important;
    background: rgba(203, 160, 82, 0.05);
    padding: 15px 20px;
    display: inline-block;
    text-align: center;
}

/* Brand Chips */
.brand-chip {
    background: #eee;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 15px 0 40px 0;
    }
    .seo-heading {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: left;
    }
    .seo-heading::before,
    .seo-heading::after {
        background: linear-gradient(90deg, rgba(203, 160, 82, 0.3), transparent);
    }
    .trust-item {
        align-items: flex-start;
        padding: 12px 15px;
        gap: 12px;
    }
    .trust-item .text-green {
        margin-top: 2px;
        font-size: 16px;
        min-width: 20px;
    }
    .trust-item p {
        font-size: 12px;
        line-height: 1.6;
    }
    .trust-item p strong {
        display: block;
        margin-bottom: 3px;
        font-size: 13px;
    }
    .seo-block p {
        font-size: 12px;
        line-height: 1.6;
        text-align: justify;
    }
    .seo-call {
        font-size: 13px;
        padding: 12px 15px;
        text-align: center !important;
    }
    .footer-col {
        margin-bottom: 20px;
    }
    .footer-col h4 {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        border-bottom: 1px solid #333;
        padding-bottom: 5px;
    }
    .footer-col ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px 15px;
    }
    .footer-col ul li {
        font-size: 12px !important;
        margin-bottom: 0 !important;
        line-height: 1.4;
    }
    .contact-info {
        display: block !important;
    }
    .contact-info li {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }
    .brand-col {
        padding-right: 0 !important;
    }
    .brand-desc {
        text-align: justify !important;
        font-size: 13px !important;
    }
    .footer-logo h2 {
        font-size: 22px !important;
    }
    .whatsapp-inner {
        flex-direction: column;
        padding: 20px !important;
        gap: 20px !important;
        align-items: flex-start !important;
    }
    .whatsapp-left, .whatsapp-right {
        gap: 15px !important;
    }
    .whatsapp-icon-large, .phone-icon-large {
        font-size: 28px !important;
    }
    .whatsapp-text h3, .phone-text h3 {
        font-size: 15px !important;
    }
    .whatsapp-text p, .phone-text p {
        font-size: 12px !important;
    }
    .footer-bottom {
        padding: 15px 10px !important;
    }
    .footer-bottom p {
        font-size: 11px !important;
        line-height: 1.5;
    }
    .service-card {
        padding: 15px !important;
    }
    .service-card > div {
        margin-bottom: 10px !important;
    }
    .service-card img {
        width: 80px !important;
        height: 80px !important;
    }
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }
    .service-card h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    .service-card ul {
        margin-bottom: 15px !important;
    }
    .service-card ul li {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    .service-card .btn {
        padding: 10px 15px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
    .services-grid, .trust-list {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
    }
    .trust-item p {
        text-align: justify !important;
    }
    .brand-chips-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .brand-chip {
        font-size: 11px !important;
        padding: 6px 8px !important;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-banner {
        padding: 25px 20px !important;
    }
    .contact-banner h3 {
        font-size: 22px !important;
        text-align: left;
        margin-bottom: 10px !important;
    }
    .contact-banner p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    .contact-banner .contact-btn {
        width: calc(50% - 5px) !important;
        padding: 10px !important;
        font-size: 13px !important;
    }
    .mega-menu {
        padding: 15px 10px !important;
        display: none !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 10px !important;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
    }
    .mega-dropdown.active .mega-menu {
        display: grid !important;
    }
    .mega-col {
        padding: 0 5px !important;
        border-right: none !important;
    }
    .mega-col h4 {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    .mega-col a {
        font-size: 12px !important;
        padding: 6px 0 !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        border-bottom: none !important;
    }
}

/* Mobile Slide-in Animation for Hero Content */
@keyframes slideInLeftMobile {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-content {
        animation: slideInLeftMobile 0.8s ease-out forwards;
    }
}

/* Premium Contact Banner */
.premium-contact-banner {
    background: var(--dark);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}
.premium-contact-banner h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
}
.premium-contact-banner p {
    margin-bottom: 30px;
    font-size: 18px;
}
.premium-contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.premium-contact-actions .contact-btn {
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 8px;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}
.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    border-color: #128C7E;
}

@media (max-width: 768px) {
    .premium-contact-banner {
        padding: 25px 15px;
    }
    .premium-contact-banner h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .premium-contact-banner p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .premium-contact-actions {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .premium-contact-actions .contact-btn {
        font-size: 13px;
        padding: 10px 5px;
        flex: 1;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
    }
}

/* FAQ Heading Responsive */
.faq-main-heading {
    font-size: 32px;
    color: var(--dark);
    margin-top: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-main-heading {
        font-size: 22px;
        line-height: 1.4;
    }
}

/* =======================================================
   PREMIUM ANIMATIONS & UI UPGRADES
   ======================================================= */

/* 1. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000; /* Pure black background */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.6s ease;
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}
.loader-content {
    text-align: center;
    color: #fff;
}
.premium-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
}
.loader-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}
.loader-ring:nth-child(1) {
    top: 0; left: 0; right: 0; bottom: 0;
    border-top-color: var(--primary);
    animation: spinPremium 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.loader-ring:nth-child(2) {
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border-right-color: #fff;
    animation: spinPremium 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
}
.loader-ring:nth-child(3) {
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border-bottom-color: var(--primary);
    animation: spinPremium 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary);
    animation: pulsePremium 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.loader-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    animation: textPulse 2s ease-in-out infinite;
}
.loader-text span {
    color: var(--primary);
}

@keyframes spinPremium {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulsePremium {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(204,163,86,0.5); }
}

/* 2. Sticky Header */
.header {
    transition: background 0.3s ease, padding 0.3s ease;
}
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    animation: slideDown 0.5s ease forwards;
    padding: 10px 0; /* slightly smaller padding when sticky */
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* 3. Button Enhancements */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 160, 82, 0.4);
}
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 4. Image Hover Zoom */
.hover-zoom-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: inherit;
}
.hover-zoom-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    height: 100%;
    display: block;
}
.hover-zoom-wrapper:hover img {
    transform: scale(1.08);
}

/* 5. Custom Hero Animations */
.hero-content h1, 
.hero-content p, 
.hero-content .badge-premium, 
.hero-content .hero-btns {
    opacity: 0;
}
.slide.active .hero-content .badge-premium {
    animation: slideInLeftPremium 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}
.slide.active .hero-content h1 {
    animation: slideInLeftPremium 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
}
.slide.active .hero-content p {
    animation: slideInLeftPremium 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}
.slide.active .hero-content .hero-btns {
    animation: slideInLeftPremium 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
}

@keyframes slideInLeftPremium {
    from {
        opacity: 0;
        transform: translateX(-80px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* 6. Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(204, 163, 86, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 60px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
