 /* --- Core Base Styles & Variables --- */
        :root {
            --luxury-deep: #2C1B24;
            --luxury-gold: #C5A880;
            --luxury-accent: #1F1119;
            --luxury-cream: #F9F6F0;
            --white: #ffffff;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--luxury-cream);
            color: var(--luxury-deep);
            /*font-family: 'Montserrat', sans-serif; 'Rajdhani',*/
           font-family: sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .font-serif {
            font-family: 'Cinzel', serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin-right: auto;
            margin-left: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* --- Section Shared Typography --- */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-tag {
            color: var(--luxury-gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--luxury-deep);
            letter-spacing: 0.05em;
        }
        @media (min-width: 768px) {
            .section-title { font-size: 38px; }
        }

        /* --- Utility Helper Styles --- */
        .uppercase { text-transform: uppercase; }
        .tracking-wider { letter-spacing: 0.05em; }
        .tracking-widest { letter-spacing: 0.15em; }
        .font-light { font-weight: 300; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }

        /* --- Component Premium Effects --- */
        .glossy-card {
            position: relative;
            overflow: hidden;
        }
        .glossy-card::before {
            content: '';
            position: absolute;
            top: 0; left: -150%; width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg);
            transition: 0.75s;
            z-index: 2;
        }
        .glossy-card:hover::before {
            left: 150%;
        }

        .premium-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            padding: 16px 32px;
            text-transform: uppercase;
            z-index: 1;
        }
        .premium-btn::after {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, #e0af72, rgb(227 217 205), #a6732d);
            transition: all 0.9s ease;
            z-index: -1;
        }
        .premium-btn:hover::after { 
            left: 100%; 
        }

        .premium-footer-link {
            position: relative;
            display: inline-block;
            padding-bottom: 4px;
            transition: color 0.3s;
        }
        .premium-footer-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--luxury-gold);
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .premium-footer-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        /* --- 1. Top Announcement Bar --- */
        .top-bar {
            display: none;
            background-color: var(--luxury-accent);
            color: var(--white);
            font-size: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(197, 168, 128, 0.2);
            letter-spacing: 0.05em;
        }
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-contacts {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .top-bar-contacts a {
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        .top-bar-contacts a i {
            margin-right: 8px;
            color: var(--luxury-gold);
        }
        .top-bar-contacts a:hover {
            color: var(--luxury-gold);
        }
        .top-bar-socials {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 14px;
        }
        .top-bar-socials a {
            transition: color 0.3s;
        }
        .top-bar-socials a:hover {
            color: var(--luxury-gold);
        }

        @media (min-width: 768px) {
            .top-bar { display: block; }
        }

        /* --- 2. Navigation Header --- */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: #e4dace;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border-bottom: 1px solid var(--gray-100);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
        }
        .logo {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--luxury-deep);
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }
        .desktop-nav {
            display: none;
            align-items: center;
            gap: 30px;
            font-weight: 500;
            letter-spacing: 0.05em;
            font-size: 11px;
            text-transform: uppercase;
        }
        @media (min-width: 1140px) {
            .desktop-nav { gap: 67px; font-size: 13px; }
        }
        .desktop-nav > a, .desktop-dropdown-trigger {
            color: var(--gray-600);
            padding-bottom: 4px;
            transition: color 0.3s;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav > a:hover, .desktop-dropdown-trigger:hover {
            color: var(--luxury-gold);
        }
        .desktop-nav a.active-link {
            color: var(--luxury-deep);
            border-bottom: 2px solid var(--luxury-gold);
            font-weight: 700;
        }
        
        /* Desktop Dropdown Submenu */
        .desktop-dropdown {
            position: relative;
            padding: 8px 0;
        }
        .desktop-dropdown-trigger i {
            font-size: 10px;
            margin-left: 4px;
        }
        .desktop-dropdown-menu {
            position: absolute;
            left: 0;
            top: 100%;
            margin-top: 8px;
            width: 224px;
            background-color: var(--luxury-deep);
            color: var(--white);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s ease;
            border-top: 2px solid var(--luxury-gold);
            z-index: 50;
        }
        .desktop-dropdown:hover .desktop-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .desktop-dropdown-menu a {
            display: block;
            padding: 14px 20px;
            font-size: 11px;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
        }
        .desktop-dropdown-menu a:last-child {
            border-bottom: none;
        }
        .desktop-dropdown-menu a:hover {
            background-color: var(--luxury-gold);
            color: var(--luxury-deep);
        }

        .mobile-menu-btn {
            display: block;
            color: var(--luxury-deep);
            font-size: 24px;
        }

        @media (min-width: 1024px) {
            .desktop-nav { display: flex; }
            .mobile-menu-btn { display: none; }
        }
        
        
        
        
        
        
       
        
        .desktop-nav > a,
.desktop-dropdown-trigger{
    position: relative;
    color: var(--gray-600);
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

/* Golden line */
.desktop-nav > a::after,
.desktop-dropdown-trigger::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #c8a165; /* Golden Color */
    transition: width 0.4s ease;
}

/* Hover Effect */
.desktop-nav > a:hover::after,
.desktop-dropdown-trigger:hover::after{
    width: 100%;
}

.desktop-nav > a:hover,
.desktop-dropdown-trigger:hover{
    color: #2c2230;
}












        /* FIXED Mobile Drawer Menu (With Scroll Capability) */
        .mobile-menu {
            display: none;
            background-color: var(--white);
            border-top: 1px solid var(--gray-100);
            padding: 16px 24px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            max-height: 85vh;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu > a, .mobile-dropdown-btn-wrapper button {
            display: block;
            font-weight: 500;
            color: var(--gray-600);
            padding: 12px 0;
            width: 100%;
            text-align: left;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid var(--gray-100);
        }
        .mobile-menu > a:hover, .mobile-dropdown-btn-wrapper button:hover {
            color: var(--luxury-gold);
        }
        .mobile-dropdown-btn-wrapper button {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-dropdown-content {
            max-height: 0;
            overflow-y: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            padding-left: 16px;
        }
        .mobile-dropdown-content.open {
            max-height: 100px;
            overflow-y: auto;
            margin-top: 4px;
            margin-bottom: 8px;
        }
        .mobile-dropdown-content a {
            display: block;
            font-size: 13px;
            color: var(--gray-500);
            padding: 8px 0;
            transition: color 0.2s;
        }
         
        /* Fixes the active line rendering on the desktop Services button element */
        button.desktop-dropdown-trigger.active-link {
           color: #2c2230 !important; /* Forces your var(--luxury-deep) tone */
        }
      button.desktop-dropdown-trigger.active-link::after {
           width: 100% !important; /* Keeps the golden accent line underneath filled */
        }

/* Optional mobile layout active styling highlights */
.mobile-menu > a.active-link,
.mobile-dropdown-btn-wrapper button.active-link {
    color: var(--luxury-gold) !important;
    font-weight: 700;
}
        /* --- 3. Hero Carousel Slider --- */
        .hero-section {
            position: relative;
            height: 500px;
            overflow: hidden;
            background-color: var(--luxury-accent);
        }
        @media (min-width: 768px) {
            .hero-section { height: 650px; }
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            z-index: 10;
            opacity: 0;
            pointer-events: none;
            transition: opacity 1s ease-in-out;
        }
        .hero-slide.active {
            opacity: 1;
            pointer-events: auto;
        }
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.45;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0,0,0,0.3);
        }
        .hero-content {
            text-align: center;
            color: var(--white);
            padding: 0 24px;
            max-width: 800px;
        }
        .hero-tagline {
            color: var(--luxury-gold);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 13px;
            font-weight: 600;
            display: block;
            margin-bottom: 16px;
        }
        .hero-title {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: 0.05em;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        @media (min-width: 768px) {
            .hero-title { font-size: 56px; }
        }
        .hero-desc {
            font-size: 14px;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 32px auto;
            color: var(--gray-200);
            line-height: 1.6;
        }
        .hero-btn {
            background-color: var(--luxury-gold);
            color: var(--luxury-deep);
        }
        .hero-btn:hover {
            background-color: var(--white);
        }

        .hero-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255,255,255,0.1);
            color: var(--white);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            z-index: 30;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .hero-control:hover {
            background-color: var(--luxury-gold);
            color: var(--luxury-deep);
        }
        .hero-prev { left: 16px; }
        .hero-next { right: 16px; }

        /* --- 4. About Section --- */
        .about-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }
        @media (min-width: 1024px) {
            .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; }
        }
        .about-image-wrapper {
            position: relative;
        }
        .about-image-border {
            border: 2px solid var(--luxury-gold);
            position: absolute;
            top: 16px; left: 16px; width: 100%; height: 100%;
            z-index: 0;
        }
        .about-img-box {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 450px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .about-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .about-tag {
            color: var(--luxury-gold);
            font-weight: 600;
            letter-spacing: 0.15em;
            font-size: 12px;
            text-transform: uppercase;
        }
        .about-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--luxury-deep);
            letter-spacing: 0.05em;
        }
        @media (min-width: 768px) {
            .about-title { font-size: 40px; }
        }
        .about-p {
            color: var(--gray-600);
            line-height: 1.7;
            font-size: 14px;
            font-weight: 300;
        }
        .about-btn {
            border: 1px solid var(--luxury-deep);
            color: var(--luxury-deep);
            align-self: flex-start;
            margin-top: 12px;
        }
        .about-btn:hover {
            background-color: var(--luxury-deep);
            color: var(--white);
        }

        /* --- 5. SERVICES SECTION (INFINITE LOOP RE-ENGINEERED) --- */
        .services-section {
            padding: 80px 0;
            background-color: var(--luxury-accent);
            color: var(--white);
        }
        .services-header {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }
        @media (min-width: 768px) {
            .services-header { flex-direction: row; align-items: flex-end; }
        }
        .services-controls {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }
        @media (min-width: 768px) {
            .services-controls { margin-top: 0; }
        }
        .services-btn {
            background-color: var(--luxury-deep);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        .services-btn:hover {
            background-color: var(--luxury-gold);
            color: var(--luxury-deep);
        }

        .services-carousel-window {
            overflow: hidden;
            width: 100%;
        }
        .services-track {
            display: flex;
            gap: 24px;
        }
        .service-card {
            width: 100%;
            min-width: 100%;
            height: 420px;
            position: relative;
            background-color: var(--luxury-deep);
            border: 1px solid rgba(255,255,255,0.05);
            flex-shrink: 0;
        }
        @media (min-width: 640px) {
            .service-card { width: calc(50% - 12px); min-width: calc(50% - 12px); }
        }
        @media (min-width: 1024px) {
            .service-card { width: calc(33.333% - 16px); min-width: calc(33.333% - 16px); }
        }
        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: transform 0.7s;
        }
        .service-card:hover img {
            transform: scale(1.05);
        }
        .service-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--luxury-accent) 0%, transparent 60%);
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--luxury-gold);
        }
        .service-card p {
            font-size: 13px;
            color: var(--gray-300);
            margin-top: 8px;
            line-height: 1.4;
        }

        /* --- 6. WHY CHOOSE US SECTION (FIXED PARALLAX EMBEDDED) --- */
        .choose-section {
            padding: 100px 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1590736969955-71cb94801750?auto=format&fit=crop&w=1920&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        /* Mobile Performance Fallback for Background Fixed */
        @media (max-width: 1024px) {
            .choose-section {
                background-attachment: scroll;
            }
        }
        .choose-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 768px) {
            .choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .choose-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        .choose-card {
            background-color: rgba(249, 246, 240, 0.85);
            backdrop-filter: blur(8px);
            padding: 40px 30px;
            border: 1px solid var(--gray-200);
            text-align: center;
            transition: all 0.3s ease;
        }
        .choose-card:hover {
            transform: translateY(-5px);
            border-color: var(--luxury-gold);
            background-color: var(--white);
            box-shadow: 0 15px 30px rgba(0,0,0,0.07);
        }
        .choose-icon-box {
            font-size: 32px;
            color: var(--luxury-gold);
            margin-bottom: 20px;
        }
        .choose-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }
        .choose-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* --- 7. Artists & Visionaries Section --- */
        .artists-section {
            padding: 80px 0;
            background-color: var(--luxury-cream);
        }
        .artists-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 640px) {
            .artists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .artists-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }
        .artist-card {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            overflow: hidden;
        }
        .artist-img-container {
            height: 320px;
            overflow: hidden;
            position: relative;
        }
        .artist-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .artist-card:hover .artist-img-container img {
            transform: scale(1.06);
        }
        .artist-meta {
            padding: 20px;
            text-align: center;
        }
        .artist-meta h3 {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }
        .artist-meta span {
            font-size: 12px;
            color: var(--luxury-gold);
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 0.1em;
        }

        /* --- 8. Stats Grid Bar --- */
        .stats-section {
            padding: 60px 0;
            background-color: var(--white);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            background-color: var(--luxury-deep);
            color: var(--white);
            border: 1px solid rgba(197, 168, 128, 0.3);
        }
        @media (min-width: 640px) {
            .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }
        .stats-card {
            padding: 36px;
            text-align: center;
            border-bottom: 1px solid rgba(197, 168, 128, 0.2);
        }
        @media (min-width: 640px) {
            .stats-card { border-right: 1px solid rgba(197, 168, 128, 0.2); }
            .stats-grid div:nth-child(2n) { border-right: none; }
        }
        @media (min-width: 1024px) {
            .stats-card { border-bottom: none; border-right: 1px solid rgba(197, 168, 128, 0.2); }
            .stats-grid div:last-child { border-right: none; }
        }
        .stats-num {
            font-size: 42px;
            font-weight: 700;
            color: var(--luxury-gold);
        }
        .stats-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-400);
            margin-top: 6px;
        }

        /* --- 9. Testimonials Section --- */
        .testimonials-section {
            padding: 80px 0;
            background-color: var(--luxury-accent);
            color: var(--white);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 768px) {
            .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        .testimonial-card {
            background-color: var(--luxury-deep);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .stars-box {
            color: var(--luxury-gold);
            font-size: 14px;
            margin-bottom: 16px;
        }
        .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-300);
            font-style: italic;
            margin-bottom: 24px;
        }
        .client-info h4 {
            font-size: 15px;
            color: var(--luxury-gold);
            font-weight: 600;
        }
        .client-info span {
            font-size: 11px;
            color: var(--gray-400);
            text-transform: uppercase;
        }

        /* --- 10. Insights Journal Section --- */
        .journal-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        .journal-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 768px) {
            .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        .journal-card {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
        }
        .journal-img-container {
            height: 240px;
            overflow: hidden;
        }
        .journal-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .journal-card:hover .journal-img-container img {
            transform: scale(1.05);
        }
        .journal-meta {
            padding: 24px;
        }
        .journal-date {
            font-size: 11px;
            color: var(--luxury-gold);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 8px;
        }
        .journal-card h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 12px;
        }
        .journal-card p {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* --- 11. FAQ Section --- */
        .faq-section {
            padding: 80px 0;
            background-color: var(--luxury-cream);
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-card {
            border: 1px solid var(--gray-200);
            background-color: var(--white);
        }
        .faq-card.active-card {
            background-color: var(--white);
            border-color: var(--luxury-gold);
        }
        .faq-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            text-align: left;
            font-weight: 600;
            color: var(--luxury-deep);
            background-color: #e4dace;
        }
        .faq-trigger span {
            font-size: 15px;
        }
        .faq-symbol {
            font-size: 18px;
            color: var(--luxury-gold);
        }
        .faq-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-panel-inner {
            padding: 0 24px 20px 24px;
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* --- 12. Map & Contact Section --- */
        .map-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        .map-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media (min-width: 1024px) {
            .map-grid { grid-template-columns: 4fr 5fr; gap: 60px; }
        }
        .contact-details-box {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .contact-icon {
            width: 46px;
            height: 46px;
            background-color: var(--luxury-cream);
            border: 1px solid var(--luxury-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--luxury-deep);
            font-size: 18px;
            flex-shrink: 0;
        }
        .contact-info-text h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .contact-info-text p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.5;
        }
        .map-wrapper {
            position: relative;
            width: 100%;
            height: 350px;
            border: 1px solid var(--gray-200);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        @media (min-width: 1024px) {
            .map-wrapper { height: 100%; min-height: 400px; }
        }
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- 13. Premium Footer Section --- */
        .premium-footer {
            background-color: var(--luxury-accent);
            color: var(--white);
            padding: 80px 0 30px 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 48px;
        }
        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (min-width: 1024px) {
            .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }
        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .footer-brand {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.15em;
        }
        .footer-brand span { color: var(--luxury-gold); }
        .brand-text {
            font-size: 13px;
            color: var(--gray-300);
            line-height: 1.6;
        }
        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }
        .footer-socials a {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        .footer-socials a:hover {
            background-color: var(--luxury-gold);
            color: var(--luxury-deep);
        }
        .footer-heading {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 13px;
            color: var(--gray-300);
        }
        .footer-links a:hover { color: var(--luxury-gold); }
        
        .footer-bottom {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--gray-400);
        }
        @media (min-width: 768px) {
            .footer-bottom { flex-direction: row; }
        }
        .footer-designer a { color: var(--luxury-gold); font-weight: 600; }

        /* --- 14. Floating Widgets --- */
        .floating-matrix {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 90;
        }
        .float-btn {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            transition: 0.3s;
        }
        .scroll-top-btn {
            display: none;
            background-color: var(--luxury-deep);
            color: var(--white);
            border: 1px solid rgba(197,168,128,0.3);
        }
        .scroll-top-btn:hover { background-color: var(--luxury-gold); color: var(--luxury-deep); }
        .whatsapp-btn { background-color: #25D366; color: var(--white); font-size: 22px; }


        .voe-testimonial-section{
    padding:80px 15px;
}

.voe-container{
    max-width:1100px;
    margin:auto;
}

.voe-heading-wrap{
    text-align:center;
    margin-bottom:40px;
}

.voe-main-heading{
    font-size:42px;
    font-weight:700;
    color:#2b1720;
    text-transform:uppercase;
    letter-spacing:2px;
}

.voe-slider-box{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.voe-slider-wrapper{
    padding:50px 80px;
}

.voe-slide{
    display:none;
    text-align:center;
    animation:voeFade .5s ease;
}

.voe-slide.active{
    display:block;
}

@keyframes voeFade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.voe-review-text{
    font-size:20px;
    line-height:1.8;
    color:#6d7480;
    font-style:italic;
    margin-bottom:30px;
}

.voe-client-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.voe-client-box img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #d7b87a;
}

.voe-client-box h4{
    font-size:18px;
    color:#2b1720;
    font-weight:700;
    margin-bottom:4px;
}

.voe-client-box span{
    font-size:14px;
    color:#8a919d;
}

.voe-nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f3eee8;
    color:#2b1720;
    font-size:20px;
    cursor:pointer;
    transition:all .3s ease;
    z-index:2;
}

.voe-nav-btn:hover{
    background:#2b1720;
    color:#fff;
    transform:translateY(-50%) scale(1.08);
}

.voe-prev-btn{
    left:15px;
}

.voe-next-btn{
    right:15px;
}

/* Responsive */

@media(max-width:768px){

    .voe-testimonial-section{
        padding:60px 15px;
    }

    .voe-main-heading{
        font-size:28px;
    }

    .voe-slider-wrapper{
        padding:40px 55px;
    }

    .voe-review-text{
        font-size:16px;
        line-height:1.7;
    }

    .voe-client-box{
        flex-direction:column;
        text-align:center;
    }

    .voe-nav-btn{
        width:38px;
        height:38px;
        font-size:16px;
    }
}

@media(max-width:480px){

    .voe-slider-wrapper{
        padding:35px 45px;
    }

    .voe-main-heading{
        font-size:24px;
    }

    .voe-review-text{
        font-size:15px;
    }

    .voe-client-box img{
        width:50px;
        height:50px;
    }

    .voe-client-box h4{
        font-size:16px;
    }
}



/* ===========================
   WHY CHOOSE SECTION
=========================== */

.zkc-whychoose-section{
    position:relative;
    width:100%;
    padding:50px 0;
    background:url("../images/premium-quality-materials.jpeg") center center/cover no-repeat;
    background-attachment:fixed;
}

.zkc-whychoose-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

.zkc-whychoose-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.zkc-whychoose-box{
    width:380px;
    background:rgba(42,22,32,0.55);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px);
    padding:22px 25px;
    border-top:3px solid #d4b07a;
    transition:0.4s;
}

.zkc-whychoose-box:hover{
    background:rgba(42,22,32,0.65);
}

.zkc-whychoose-subtitle{
    display:block;
    color:#d4b07a;
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:10px;
}

.zkc-whychoose-title{
    color:#ffffff;
    font-size:24px;
    line-height:1.3;
    margin-bottom:20px;
    font-family:Georgia, serif;
}

.zkc-whychoose-item{
    display:flex;
    gap:12px;
    margin-bottom:15px;
}

.zkc-whychoose-item:last-child{
    margin-bottom:0;
}

.zkc-whychoose-icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    background:#d4b07a;
    color:#2a1620;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:bold;
}

.zkc-whychoose-content h3{
    color:#ffffff;
    font-size:16px;
    margin-bottom:4px;
}

.zkc-whychoose-content p{
    color:#dddddd;
    font-size:13px;
    line-height:1.6;
    margin:0;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px){

    .zkc-whychoose-box{
        width:340px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:767px){

    .zkc-whychoose-section{
        padding:40px 0;
        background-attachment:scroll;
    }

    .zkc-whychoose-box{
        width:100%;
        max-width:100%;
        padding:20px;
    }

    .zkc-whychoose-title{
        font-size:22px;
    }

    .zkc-whychoose-item{
        gap:10px;
    }

    .zkc-whychoose-icon{
        width:34px;
        height:34px;
        min-width:34px;
    }
}

.btq-premium-stats{
    width:100%;
    padding:0;
    padding: 20px 0px;
}

.btq-stat-row{
    display:flex;
    flex-wrap:wrap;
}

.btq-stat-box{
    width:25%;
    height:200px;
    
    position:relative;
    overflow:hidden;
    border-right:1px solid rgba(255,255,255,0.1);
}

.btq-stat-box:last-child{
    border-right:none;
}

.btq-stat-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    /* background-attachment:fixed; */
    opacity:0.25;
    transition:0.6s ease;
}

.btq-stat-overlay{
    position:absolute;
    inset:0;
    background:rgb(35 15 25 / 66%);
}

.btq-stat-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.btq-stat-content span{
    font-size:36px;
    margin-bottom:10px;
}

.btq-stat-content h4{
    color:#d8b07a;
    font-size:34px;
    font-weight:700;
    margin:0 0 8px;
}

.btq-stat-content p{
    color:#ffffff;
    font-size:14px;
    letter-spacing:2px;
    margin:0;
    text-transform:uppercase;
}

.btq-stat-box:hover .btq-stat-bg{
    transform:scale(1.15);
    opacity:0.4;
}

/* Tablet */
@media(max-width:991px){
    .btq-stat-box{
        width:50%;
        height:180px;
    }
}

/* Mobile */
@media(max-width:576px){
    .btq-stat-box{
        width:100%;
        height:160px;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    .btq-stat-content h4{
        font-size:28px;
    }

    .btq-stat-content p{
        font-size:13px;
        letter-spacing:1px;
    }
}

        /* ============================================================
           ABOUT PAGE BANNER — all classes prefixed "zka-"
           Zero collision with any existing or sarees-page class.
        ============================================================ */

        .zka-banner {
            position: relative;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Mobile: no topbar */
            height: calc(100vh - 72px);
            min-height: 420px;
        }

        /* Desktop & up: subtract topbar too */
        @media (min-width: 768px) {
            .zka-banner {
                height: calc(100vh - 41px - 72px);
                min-height: 500px;
            }
        }

        /* ------ Fixed background image ------ */
        .zka-banner-bg-about-us {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/about-us-banner.jpg');
            background-attachment: fixed;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 0;
        }

        @media (max-width: 1024px) {
            .zka-banner-bg-about-us {
                background-attachment: scroll;
            }
        }

        /* ------ Dark gradient overlay ------ */
        .zka-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                160deg,
                rgba(44, 27, 36, 0.85) 0%,
                rgba(31, 17, 25, 0.65) 50%,
                rgba(44, 27, 36, 0.90) 100%
            );
            z-index: 1;
        }

        /* Subtle gold vignette ring — purely decorative */
        .zka-banner-vignette {
            position: absolute;
            inset: 0;
            background: radial-gradient(
                ellipse at center,
                transparent 40%,
                rgba(44, 27, 36, 0.45) 100%
            );
            z-index: 2;
            pointer-events: none;
        }

        /* ------ Content container ------ */
        .zka-banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #ffffff;
            padding: 0 24px;
            max-width: 920px;
            width: 100%;
        }

        /* Top ornament line */
        .zka-banner-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 22px;
            opacity: 0;
            animation: zkaFadeUp 0.7s 0.1s ease forwards;
        }

        .zka-banner-ornament::before,
        .zka-banner-ornament::after {
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--luxury-gold));
        }

        .zka-banner-ornament::after {
            background: linear-gradient(to left, transparent, var(--luxury-gold));
        }

        .zka-banner-ornament i {
            color: var(--luxury-gold);
            font-size: 14px;
        }

        /* Eyebrow label */
        .zka-banner-eyebrow {
            display: block;
            color: var(--luxury-gold);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            margin-bottom: 18px;
            opacity: 0;
            animation: zkaFadeUp 0.7s 0.25s ease forwards;
        }

        /* Main heading */
        .zka-banner-title {
            font-family: 'Cinzel', serif;
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 0.04em;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 10px;
            opacity: 0;
            animation: zkaFadeUp 0.8s 0.4s ease forwards;
        }

        .zka-banner-title .zka-title-gold {
            color: var(--luxury-gold);
            display: inline;
        }

       
        /* Stat pills row */
        .zka-banner-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            margin-bottom: 36px;
            opacity: 0;
            animation: zkaFadeUp 0.8s 0.7s ease forwards;
        }

        .zka-stat-item {
            padding: 14px 24px;
            border-right: 1px solid rgba(197, 168, 128, 0.3);
            text-align: center;
        }

        .zka-stat-item:last-child {
            border-right: none;
        }

        .zka-stat-num {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: clamp(20px, 2.8vw, 30px);
            font-weight: 700;
            color: var(--luxury-gold);
            line-height: 1;
            margin-bottom: 4px;
            white-space: nowrap;
        }

        .zka-stat-label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
        }

        /* CTA button — gold-fill */
        .zka-btn {
            position: relative;
            overflow: hidden;
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.18em;
            padding: 15px 36px;
            text-transform: uppercase;
            background-color: var(--luxury-gold);
            color: var(--luxury-deep);
            border: 1px solid var(--luxury-gold);
            transition: color 0.4s ease;
            z-index: 1;
            opacity: 0;
            animation: zkaFadeUp 0.8s 0.85s ease forwards;
        }

        .zka-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #e0af72, rgb(227 217 205), #a6732d);
            transition: left 0.9s ease;
            z-index: -1;
        }

        .zka-btn:hover::after { left: 100%; }
        .zka-btn:hover { color: var(--luxury-deep); }

        /* ------ Breadcrumb (bottom-centre) ------ */
        .zka-breadcrumb {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.06em;
            white-space: nowrap;
            opacity: 0;
            animation: zkaFadeIn 1s 1.1s ease forwards;
        }

        .zka-breadcrumb a {
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s;
        }

        .zka-breadcrumb a:hover { color: var(--luxury-gold); }

        .zka-bc-sep {
            color: var(--luxury-gold);
            font-size: 8px;
        }

        .zka-bc-current { color: var(--luxury-gold); }

        /* ------ Scroll-down indicator (bottom) ------ */
        .zka-scroll-hint {
            position: absolute;
            bottom: 26px;
            right: 32px;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: 0;
            animation: zkaFadeIn 1.2s 1.3s ease forwards;
        }

        .zka-scroll-hint span {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .zka-scroll-line {
            width: 1px;
            height: 44px;
            background: linear-gradient(to bottom, var(--luxury-gold), transparent);
            animation: zkaScrollPulse 1.8s ease-in-out infinite;
        }

        @keyframes zkaScrollPulse {
            0%, 100% { transform: scaleY(1);   opacity: 1; }
            50%       { transform: scaleY(0.5); opacity: 0.4; }
        }

        /* ------ Keyframe animations ------ */
        @keyframes zkaFadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0);    }
        }

        @keyframes zkaFadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        @media (max-width: 600px) {
            .zka-stat-item {
                padding: 8px 12px;
                border-right: none;
            }
            .zka-banner-stats {
                gap: 10px;
            }
            .zka-scroll-hint {
                display: none;
            }
        }

/* ------ Fixed background image ------ */
        .zka-banner-bg-blogs {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/blog-banner.jpg');
            background-attachment: fixed;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 0;
        }

        @media (max-width: 1024px) {
            .zka-banner-bg-blogs {
                background-attachment: scroll;
            }
        }

/* Fixed-position background image */
.zks-banner-bg-boutique-atelier {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/zakira-women-botique.jpg');
    background-attachment: fixed; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile fallback for fixed attachment */
@media (max-width: 1024px) {
    .zks-banner-bg-boutique-atelier {
        background-attachment: scroll;
    }
}

/* ------ Fixed background image ------ */
        .zka-banner-bg-contact-us {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/contact-us-banner.jpg');
            background-attachment: fixed;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 0;
        }

        @media (max-width: 1024px) {
            .zka-banner-bg-contact-us {
                background-attachment: scroll;
            }
        }
/* Fixed-position background image */
.zks-banner-bg-dupattas {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/designer-dupattas.jpg');
    background-attachment: fixed; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile fallback for fixed attachment */
@media (max-width: 1024px) {
    .zks-banner-bg-dupattas {
        background-attachment: scroll;
    }
}

* Fixed-position background image */
.zks-banner-bg-dress-material {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/zakira-dress-materials.jpg');
    background-attachment: fixed; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile fallback for fixed attachment */
@media (max-width: 1024px) {
    .zks-banner-bg-dress-material {
        background-attachment: scroll;
    }
}
/* ------ Fixed background image ------ */
        .zka-banner-bg-gallery {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/gallery-banner.jpg');
            background-attachment: fixed;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 0;
        }

        @media (max-width: 1024px) {
            .zka-banner-bg-gallery {
                background-attachment: scroll;
            }
        }

/* Fixed-position background image */
.zks-banner-bg-luxury-bottoms {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/luxury-bottom-wear-banner.jpg');
    background-attachment: fixed; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile fallback for fixed attachment */
@media (max-width: 1024px) {
    .zks-banner-bg-luxury-bottoms {
        background-attachment: scroll;
    }
} 
/* Fixed-position background image */
.zks-banner-bg-premium-fabrics {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/zakira-fabrics.jpg');
    background-attachment: fixed; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile fallback for fixed attachment */
@media (max-width: 1024px) {
    .zks-banner-bg-premium-fabrics {
        background-attachment: scroll;
    }
}

/* Fixed-position background image */
.zks-banner-bg-saree-collections {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/zakira-sarees-warangal.jpg');
    background-attachment: fixed; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile fallback for fixed attachment */
@media (max-width: 1024px) {
    .zks-banner-bg-saree-collections {
        background-attachment: scroll;
    }
}


    /* ========================================================
   ZAKIRA PREMIUM CONTACT PAGE LAYOUT ENGINE
   ======================================================== */

/* Main Section Outer Frame & Base Spacing */
.zk-contact-section-wrapper {
    background-color: var(--luxury-cream);
    color: var(--luxury-deep);
    width: 100%;
    padding: 80px 0;
    box-sizing: border-box;
}

@media(max-width: 767px) {
    .zk-contact-section-wrapper {
        padding: 40px 0;
    }
}

/* Core Content Inner Layout Structure */
.zk-contact-content-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 5fr 7fr; /* Perfectly balances detailed info and long form fields */
    gap: 60px;
    align-items: start;
    box-sizing: border-box;
}

@media(max-width: 1024px) {
    .zk-contact-content-container {
        grid-template-columns: 1fr; /* Stacks column pairs smoothly for smaller interfaces */
        gap: 50px;
        margin-bottom: 40px;
    }
}

@media(max-width: 767px) {
    .zk-contact-content-container {
        padding: 0 16px;
    }
}

/* --- Left Column: Studio Information Block --- */
.zk-contact-info-block {
    display: flex;
    flex-direction: column;
}

.zk-contact-subtitle-label {
    color: var(--luxury-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.zk-contact-main-title {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--luxury-deep);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

@media(max-width: 767px) {
    .zk-contact-main-title {
        font-size: 28px;
    }
}

.zk-contact-description-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    font-weight: 300;
    margin-bottom: 40px;
}

/* Detail Listing Cards Frame */
.zk-contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zk-contact-detail-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.zk-contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--white);
    border: 1px solid var(--luxury-gold);
    color: var(--luxury-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.35s ease;
}

/* Interactive subtle lift on card element hover */
.zk-contact-detail-card:hover .zk-contact-detail-icon {
    background-color: var(--luxury-deep);
    color: var(--white);
    border-color: var(--luxury-deep);
    transform: rotate(45deg);
}

.zk-contact-detail-content {
    display: flex;
    flex-direction: column;
}

.zk-contact-detail-label {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--luxury-deep);
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
}

.zk-contact-detail-value {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray-600);
    font-weight: 300;
    margin: 0;
}


/* --- Right Column: Premium Inquiry Form --- */
.zk-contact-form-block {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    padding: 45px;
    position: relative;
    box-sizing: border-box;
}

/* Embeds the premium shimmery effect used in home components */
.zk-contact-form-block::before {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.85s;
    z-index: 2;
    pointer-events: none;
}

.zk-contact-form-block:hover::before {
    left: 150%;
}

@media(max-width: 767px) {
    .zk-contact-form-block {
        padding: 24px 20px;
    }
}

.zk-contact-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* Inline Form Side-By-Side Structure */
.zk-contact-form-row-dual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

@media(max-width: 640px) {
    .zk-contact-form-row-dual {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.zk-contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.zk-contact-field-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--luxury-deep);
}

/* Universal Styling Architecture for Fields, Selectors, and Textareas */
.zk-contact-input-element,
.zk-contact-select-element,
.zk-contact-textarea-element {
    width: 100%;
    background-color: var(--luxury-cream);
    color: var(--luxury-deep);
    border: 1px solid var(--gray-200);
    padding: 14px 16px;
    font-size: 14px;
    font-family: sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-radius: 0; /* Maintains enterprise clean industrial aesthetics */
}

.zk-contact-select-element {
    cursor: pointer;
    appearance: none; /* Strips default styling out */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'><path stroke='%232C1B24' stroke-width='1.5' d='m1 1 4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.zk-contact-textarea-element {
    resize: vertical;
}

/* Interactive focus borders drawing from site brand identity colors */
.zk-contact-input-element:focus,
.zk-contact-select-element:focus,
.zk-contact-textarea-element:focus {
    border-color: var(--luxury-gold);
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(195, 168, 128, 0.08);
}

/* Custom Premium Interface Action Button */
.zk-contact-submit-button {
    background-color: var(--luxury-deep);
    color: var(--white);
    border: 1px solid var(--luxury-deep);
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.zk-contact-submit-button span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.zk-contact-submit-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, #e0af72, rgb(227, 217, 205), #a6732d);
    transition: all 0.6s ease;
    z-index: -1;
}

/* Interactive dynamic motion mapping on hover states */
.zk-contact-submit-button:hover::after {
    left: 100%;
}

.zk-contact-submit-button:hover {
    color: var(--luxury-deep);
    border-color: var(--luxury-gold);
    background-color: var(--white);
}

.zk-contact-submit-button:hover span {
    transform: translateX(4px);
}

@media(max-width: 640px) {
    .zk-contact-submit-button {
        width: 100%;
        justify-content: center;
    }
}


/* --- Bottom Section: Map Element Framework --- */
.zk-contact-bottom-map-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media(max-width: 767px) {
    .zk-contact-bottom-map-wrapper {
        padding: 0 16px;
    }
}

.zk-contact-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
    background-color: var(--white);
}

@media(max-width: 767px) {
    .zk-contact-map-container {
        height: 320px;
    }
}

.zk-contact-iframe-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


    /* ========================================================
   ZAKIRA FIXED BLOG GRID & SIDEBAR STYLE MATRIX
   ======================================================== */

/* Root Content Frame Spacing */
.zkb-blog-layout-container {
    width: 100%;
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Base structural layout using explicit grid parameters */
.zkb-blog-layout-grid {
    display: grid;
    grid-template-columns: 8.5fr 3.5fr; /* Keeps sidebar proportioned correctly */
    gap: 40px; 
    align-items: start;
}

/* STRICT 2*N Grid Format Engine */
.zkb-blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px; /* Uniform horizontal and vertical card spacing */
}

/* Modern Blog Card Item Frame */
.zkb-post-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    padding-bottom: 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.zkb-post-card:hover {
    transform: translateY(-4px);
    border-color: var(--luxury-gold);
    box-shadow: 0 12px 30px rgba(44, 27, 36, 0.05);
}

/* Card Visual Header */
.zkb-post-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--luxury-accent);
}

.zkb-post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zkb-post-card:hover .zkb-post-img-wrapper img {
    transform: scale(1.05);
}

.zkb-post-category {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--luxury-deep);
    color: var(--luxury-gold);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-top: 2px solid var(--luxury-gold);
}

/* Inside Card Spacing Parameters */
.zkb-post-meta {
    padding: 20px 24px 10px 24px;
    font-size: 12px;
    color: var(--gray-500);
}

.zkb-post-meta i {
    color: var(--luxury-gold);
    margin-right: 4px;
}

.zkb-post-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    padding: 0 24px 12px 24px;
}

.zkb-post-title a {
    color: var(--luxury-deep);
    transition: color 0.3s ease;
}

.zkb-post-title a:hover {
    color: var(--luxury-gold);
}

.zkb-post-excerpt {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray-600);
    padding: 0 24px 20px 24px;
    font-weight: 300;
    flex-grow: 1; /* Pushes layout actions uniformly to the baseline */
}

/* Action Trigger Golden Line Interaction */
.zkb-readmore-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--luxury-deep);
    margin-left: 24px;
    align-self: flex-start;
    position: relative;
    padding-bottom: 4px;
}

.zkb-readmore-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: #c8a165; 
    transition: width 0.35s ease;
}

.zkb-post-card:hover .zkb-readmore-link::after {
    width: 100%;
}

/* --- SIDEBAR WIDGET SYSTEM --- */
.zkb-blog-sidebar {
    width: 100%;
}

.zkb-sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    padding: 30px 24px;
}

.zkb-widget-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--luxury-deep);
}

.zkb-widget-divider {
    width: 35px;
    height: 2px;
    background-color: var(--luxury-gold);
    margin: 12px 0 24px 0;
}

/* Recent Posts Module Layout */
.zkb-recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zkb-recent-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
}

.zkb-recent-img {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    background-color: var(--luxury-accent);
}

.zkb-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zkb-recent-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--luxury-deep);
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.zkb-recent-item:hover h4 {
    color: var(--luxury-gold);
}

.zkb-recent-info span {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
}

/* --- HOME PAGE GLOSSY EFFECT BRIDGE --- */
.zkb-glossy-card {
    position: relative;
    overflow: hidden;
}
.zkb-glossy-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 2;
}
.zkb-post-card:hover::before {
    left: 150%;
}

/* ========================================================
   RESPONSIVE LAYOUT ENGINE FOR MOBILE AND TABLET
   ======================================================== */

/* Tablet Viewports */
@media (max-width: 1024px) {
    .zkb-blog-layout-container {
        margin: 50px auto;
        padding: 0 20px;
    }
    .zkb-blog-layout-grid {
        grid-template-columns: 1fr; /* Stacks sidebar cleanly below the main view */
        gap: 50px;
    }
}

/* Mobile Viewports */
@media (max-width: 767px) {
    .zkb-blog-layout-container {
        margin: 40px auto;
        padding: 0 16px;
    }
    .zkb-blog-posts-grid {
        grid-template-columns: 1fr; /* Converts strictly to 1 column pattern on tiny mobile screens */
        gap: 30px;
    }
    .zkb-post-img-wrapper {
        height: 210px;
    }
    .zkb-post-title {
        font-size: 17px;
    }
}


/* ========================================================
   ZAKIRA PREMIUM SERVICE GALLERY INTEGRATED STYLING
   ======================================================== */

.zkg-gallery-page-wrapper {
    background-color: var(--luxury-cream);
    color: var(--luxury-deep);
    width: 100%;
    padding: 40px 0 80px 0;
    box-sizing: border-box;
}

.zkg-gallery-section {
    max-width: 1280px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media(max-width: 767px) {
    .zkg-gallery-section {
        margin-bottom: 50px;
        padding: 0 16px;
    }
}

/* Heading Alignment Elements */
.zkg-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.zkg-section-tag {
    color: var(--luxury-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.zkg-section-title {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--luxury-deep);
    letter-spacing: 0.05em;
    margin: 0;
}

@media(max-width: 767px) {
    .zkg-section-title { font-size: 24px; }
}

/* STRICT 4*N Grid Structural Engine */
.zkg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .zkg-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .zkg-gallery-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Gallery Inner Card Framework */
.zkg-gallery-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.zkg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zkg-gallery-item:hover img {
    transform: scale(1.05);
}

/* Embedded Glossy Card Transition Framework */
.zkg-glossy-card {
    position: relative;
}
.zkg-glossy-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s ease;
    z-index: 2;
}
.zkg-gallery-item:hover::before {
    left: 150%;
}

/* ========================================================
   LIGHTBOX ARCHITECTURE & ZOOM SYSTEM
   ======================================================== */

.zkg-lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(31, 17, 25, 0.96); 
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkg-lightbox-overlay.zkg-active {
    display: flex;
    opacity: 1;
}

/* RIGHT-ALIGNED LIGHTBOX HEAD GROUP CONTAINER */
.zkg-lightbox-top-right-group {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2015;
}

/* ZOOM CONTROL ENGINE PANELS */
.zkg-zoom-controls {
    display: flex;
    gap: 8px;
}

.zkg-zoom-controls button {
    background: rgba(44, 27, 36, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--luxury-gold);
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    line-height: 1;
}

.zkg-zoom-controls button:hover {
    background-color: var(--luxury-gold);
    color: var(--luxury-deep);
    border-color: var(--luxury-gold);
    transform: scale(1.05);
}

/* Reset baseline layout close button positioning styles */
.zkg-lightbox-close {
    position: relative;
    top: auto;
    right: auto;
    background: none;
    border: none;
    color: var(--luxury-gold);
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.zkg-lightbox-close:hover {
    color: var(--white);
    transform: scale(1.1);
}

@media(max-width: 767px) {
    .zkg-lightbox-top-right-group {
        top: 20px;
        right: 20px;
        gap: 12px;
    }
    .zkg-zoom-controls button {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    .zkg-lightbox-close {
        font-size: 36px;
    }
}

.zkg-lightbox-view {
    max-width: 85%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zkg-lightbox-view img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: zoom-in;
    /* Transition applies on transform scales to ensure silky performance */
    transition: transform 0.2s ease-out;
    user-select: none;
}

/* Navigation Arrow System */
.zkg-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 27, 36, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--luxury-gold);
    width: 54px;
    height: 54px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2005;
}

.zkg-lightbox-nav:hover {
    background-color: var(--luxury-gold);
    color: var(--luxury-deep);
    border-color: var(--luxury-gold);
}

.zkg-nav-left { left: 30px; }
.zkg-nav-right { right: 30px; }

@media(max-width: 767px) {
    .zkg-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    .zkg-nav-left { left: 10px; }
    .zkg-nav-right { right: 10px; }
}
/* The active class that JavaScript will inject */
