/* CSS Variables for Color Scheme */
        :root {
            --primary: #C7AE6A;
            --primary-dark: #b99a45;
            --primary-light: #d5c28f;
            --primary-lighter: #e3d6b4;
            --dark: #000000;
            --dark-lighter: #1a1a1a;
            --background: #fefefe;
            --foreground: #1a1a1a;
            --muted: #777;
            --muted-foreground: #999;
            --border: #e3d6b4;
            --radius: 0.5rem;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, var(--background) 0%, #faf8f3 100%);
            color: var(--foreground);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Styles */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            border-bottom: 1px solid var(--border);
            background:     linear-gradient(to bottom right, #fefdf9, #f8f6ef);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .header-container {
            display: flex;
            height: 4rem;
            align-items: center;
            justify-content: space-between;
        }

          .logo-section {
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
}   

        .logo-section:hover {
            transform: scale(1.05);
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
        }

        .logoimg {
            width: 4rem;
            height: auto;
            margin-right: 0.3rem;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(199, 174, 106, 0.3));
        }

         .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            font-size: 0.95rem;
            font-weight: 500;
            margin-left: auto;  
        }

        .nav-link {
            position: relative;
            text-decoration: none;
            color: var(--foreground);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        .nav-link.active {
            color: var(--primary);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transition: width 0.3s ease;
        }

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

        .nav-link:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-link.active {
        color: var(--primary);
        }
        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }

        /* Mobile Menu Styles */
        .mobile-menu-button {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .mobile-menu-button span {
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-button.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-button.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-button.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            position: fixed;
            top: 4rem;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(199, 174, 106, 0.15);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: var(--foreground);
            font-size: 1.1rem;
            font-weight: 500;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--primary);
        }
/* CATALOGUE */
        .dropdown {
        position: relative;
        text-decoration: none;
        color: var(--foreground);
        padding: 0.5rem 0;
        transition: all 0.3s ease;
         }

        .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 140px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        top: 100%;
        left: 0;
        z-index: 1;
        text-decoration: none;
        text-decoration: none;
        }

        .dropdown-content a {
        color: black;
        padding: 12px 10px;
        padding-right: 0;
        text-decoration: none;
        display: block;
        }
        .dropdown-content a:hover {
        background-color: var(--primary)
        }
        .dropdown:hover::before {
        width: 100%;
        }
        .dropdown:hover .dropdown-content {
        display: block;
        }
        .dropdown:hover::before,
        .dropdown.active::before {
        width: 100%;
        }
        .dropdown-link{
            text-decoration: none;color: black;
        }
        .dropdown-link:hover::before {
            width: 100%;
        }
        .dropdown-link:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        .dropdown-link:hover::before,
        .dropdown-link.active::before {
            width: 100%;
        }
        .mobile-catalogue-section{
            padding-left: 2rem;
            padding-bottom: 2rem;
        }
            .mobile-catalogue-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 2rem;
            margin-left: 1rem;
            border-left: 2px solid var(--border);
        }
            .mobile-nav-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: black;
            margin-bottom: 1rem;
            display: block;
        }       
        .mobile-nav-link mobile-catalogue-item{
            padding-left: 2rem;
        }
        /* Contact Section */
       
        .whatsappqr{
            display: flex;
            justify-content: center;
            align-items: end;
            margin-left: auto;
            background: transparent;
            cursor: pointer;
            animation: fadeInUp 0.8s ease-out forwards;
           
           
            
        }
        .waqr{
            
            width: 300px;
            
        }
        
        .contact-section {
            padding: 6rem 0;
            min-height: 80vh;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            margin-bottom: 1rem;
            color: var(--dark-lighter);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

        .section-subtitle {
            max-width: 42rem;
            margin: 0 auto;
            font-size: 1.3rem;
            color: var(--muted);
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

       .contact-form{
            display: block;
            text-align: center;
            margin-left: 0px;
            
        } 


        .qr-text{
            font-size: 1.8rem;
             margin-bottom: 1.5rem; 
             color: var(--dark-lighter);
             margin-left:90px;
             margin-top: 200px;
             margin-right: 75px;
             
        }
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary-lighter) 0%, #ffffff 100%);
            border-radius: 1rem;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(199, 174, 106, 0.2);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .info-text h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-lighter);
        }

        .info-text p {
            color: var(--muted);
            font-size: 1rem;
        }

        

        .map-section {
            margin: 4rem 0;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(199, 174, 106, 0.15);
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .map-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
        }
        .map_loc{
            width: 1000%;
            height: 100%;
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border);
            background: linear-gradient(135deg, var(--primary-lighter) 0%, #ffffff 100%);
            
        }

        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

         .footer-icon{
            padding:0px 0; text-align:center; font-family:sans-serif;
            margin:0 10px; color:#E4405F;
             font-size:25px;
        }

        

        .rightsreserv{
            padding-left:0px;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--muted);
            font-weight: 800;
            text-align: center;
            

        }
        .footer-text {
            text-align: center;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--muted);
            font-weight: 800;
            text-decoration: none;
        }
        /* Animations */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .nav {
                display: none;
            }
            .mobile-menu-button {
                display: flex;
            }

            .logoimg {
                width: 3rem;
            }

            .logo-text {
                display: block;
                font-size: 1.2rem;
            }
            .mobile-nav {
                top: 4rem;
            }

/* Footer */
        .footer {
            border-top: 1px solid var(--border);
            background: linear-gradient(135deg, var(--primary-lighter) 0%, #ffffff 100%);
            
        }

        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

         .footer-icon{
            padding:0px 0; text-align:center; font-family:sans-serif;
            margin:0 10px; color:#E4405F;
             font-size:20px;
        }

        

        .rightsreserv{
            padding-left:0px;
            font-size: 0.8rem;
            line-height: 1.6;
            color: var(--muted);
            font-weight: 800;
            text-align: center;
            

        }
        .footer-text {
            text-align: center;
            font-size: 0.8rem;
            line-height: 1.6;
            color: var(--muted);
            font-weight: 800;
            text-decoration: none;
        }
            
        }