        :root {
            --primary: #d4af37;
            --secondary: #a52a2a;
            --dark: #2c1a1d;
            --light: #f9f4e8;
            --accent: #c19a6b;
            --text-dark: #333;
            --text-light: #f5f5f5;
            --bg-light: #f9f4e8;
            --bg-dark: #1a0f11;
            --card-bg-light: #fff;
            --card-bg-dark: #24181a;
            --header-bg-light: rgba(249, 244, 232, 0.95);
            --header-bg-dark: rgba(26, 15, 17, 0.95);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.4s ease, color 0.4s ease;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q40,5 60,20 T100,20" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/><path d="M20,40 Q40,25 60,40 T100,40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/><path d="M20,60 Q40,45 60,60 T100,60" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/><path d="M20,80 Q40,65 60,80 T100,80" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></svg>');
            background-size: 200px;
        }
        
        body.dark-mode {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--header-bg-light);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.4s ease;
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        body.dark-mode header {
            background-color: var(--header-bg-dark);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            position: relative;
            margin-left: -10%;
        }
        
        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-left: 10px;
            letter-spacing: 1px;
            position: relative;
        }
        
        .logo h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }
        
        .logo-icon {
            color: var(--secondary);
            font-size: 2.2rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            margin-left: 20%;
        }
        
        nav ul li {
            margin: 0 15px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.5px;
        }
        
        body.dark-mode nav ul li a {
            color: var(--text-light);
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Dark/Light Mode Toggle */
        .theme-toggle {
            display: flex;
            align-items: center;
            margin: 0 15px;
        }
        
        .toggle-label {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .toggle-label input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 30px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: var(--primary);
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(30px);
        }
        
        .toggle-icons {
            position: absolute;
            display: flex;
            justify-content: space-between;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            padding: 0 8px;
            pointer-events: none;
        }
        
        .toggle-icons i {
            font-size: 14px;
            color: white;
        }
        
        /* Payment Button */
         .payment-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary), #c6951d);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.5px;
            width: 100%;
        } 

         
      
        .payment-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
        }
        
        .payment-btn i {
            margin-right: 10px;
        }
        
        /* Hero Section */
        .hero {
           /* background-color: red; */
            /* background: linear-gradient(rgba(44, 26, 29, 0.85), rgba(227, 0, 38, 0.85)), url('https://i.pinimg.com/736x/4a/0d/4b/4a0d4b8a1a4d9b5a4f4e6b9e0d8f5b5e.jpg') no-repeat center center/cover; */
            background:  url('/images/slider4.jpg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        /* here code by chat gpt */

        

    /* ✅ Overlay */
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.4); /* 0.4 opacity black overlay */
        z-index: 1;
    }

    /* ✅ Bring content above overlay */
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
    }


    /* end here  */

    

    
    .gallery-item {
         cursor: pointer;
     }

   .service-card {
        cursor: pointer;
    }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M30,30 Q80,10 130,30 T200,30" fill="none" stroke="rgba(212,175,55,0.3)" stroke-width="2"/><path d="M30,70 Q80,50 130,70 T200,70" fill="none" stroke="rgba(212,175,55,0.3)" stroke-width="2"/><path d="M30,110 Q80,90 130,110 T200,110" fill="none" stroke="rgba(212,175,55,0.3)" stroke-width="2"/><path d="M30,150 Q80,130 130,150 T200,150" fill="none" stroke="rgba(212,175,55,0.3)" stroke-width="2"/></svg>'); */
            background-size: 300px;
           
            opacity: 3 black;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .hero h2 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-family: 'Dancing Script', cursive;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* About Section */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="20" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10" fill="none" stroke="%23d4af37" stroke-width="1"/></svg>');
            background-repeat: repeat-x;
        }
        
        .section::after {


            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="20" viewBox="0 0 100 20"><path d="M0,10 Q25,20 50,10 T100,10" fill="none" stroke="%23d4af37" stroke-width="1"/></svg>');
            background-repeat: repeat-x;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            color: var(--secondary);
            display: inline-block;
            position: relative;
            padding: 0 20px;
            background: var(--bg-light);
            z-index: 1;
            letter-spacing: 1px;
        }
        
        body.dark-mode .section-title h2 {
            color: var(--primary);
            background: var(--bg-dark);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
            z-index: 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
        }
        
        /* .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border: 8px solid var(--light);
            position: relative;
            z-index: 1;
            transition: transform 0.5s ease;
        }
        
        .about-img::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 3px solid var(--primary);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .about-img:hover {
            transform: translateY(-10px);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        } */

            .about-img {
            flex: 1;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            padding: 3px; /* thinner border */
            background: linear-gradient(270deg,
                red, orange, yellow, green, cyan, blue, violet, red);
            background-size: 200% 200%;
            animation: rainbowBorder 3s ease infinite; /* slowed down for elegance */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
            }

            .about-img img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
            transition: transform 0.5s ease;
            background: #fff;
            }

            .about-img:hover {
            transform: translateY(-8px);
            }
            /* .about-img {
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            } */

            .about-img:hover img {
            transform: scale(1.04);
            }

            /* Smooth rainbow animation */
            @keyframes rainbowBorder {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
                }


/* Modern Glassy Scrollbar for WebKit Browsers */
/* Ultra Slim Elegant Scrollbar - Webkit Browsers */
        ::-webkit-scrollbar {
        width: 3px; /* super slim */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        }

        ::-webkit-scrollbar-track {
        background: #f9f9f9; /* subtle light background */
        }

        ::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #d61bf7, #d6a609); 
        border-radius: 10px;
        transition: background 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #ffcd16, #ea9c0b); 
        }

/* ::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ffcd16, #ea9c0b);
} */


        
        .about-text {
            flex: 1;
            position: relative; 
            padding: 30px;
            background: var(--light);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        body.dark-mode .about-text {
            background: var(--card-bg-dark);
        }
        
        .about-text::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid var(--primary);
            border-radius: 5px;
            pointer-events: none;
        }
        
        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        body.dark-mode .about-text h3 {
            color: var(--primary);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .signature {
            font-family: 'Dancing Script', cursive;
            font-size: 2.2rem;
            color: var(--primary);
            margin-top: 20px;
            text-align: right;
        }
        
        /* Services Section */
        .services {
            background-color: #f5f0e5;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10,50 Q30,20 50,50 T90,50" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/><path d="M10,30 Q30,0 50,30 T90,30" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/><path d="M10,70 Q30,40 50,70 T90,70" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/></svg>');
            background-size: 150px;
        }
        
        body.dark-mode .services {
            background-color: #1a1212;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--card-bg-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
            border: 1px solid var(--primary);
        }
        
        body.dark-mode .service-card {
            background-color: var(--card-bg-dark);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .service-card:hover {
            transform: translateY(-15px);
        }
        
        .service-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        body.dark-mode .service-content h3 {
            color: var(--primary);
        }
        
        .service-content p {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.6rem;
            font-family: 'Playfair Display', serif;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 450px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            /* border: 3px solid rgb(229, 166, 6); */
        }
        
        body.dark-mode .gallery-item {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* .gallery-overlay { */
            /* position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(212, 175, 55, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease; */
        /* } */
        
        /* .gallery-item:hover .gallery-overlay {
            opacity: 1;
        } */
        
        .gallery-overlay i {
            color: white;
            font-size: 3rem;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: #f5f0e5;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q40,5 60,20 T100,20" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/><path d="M20,40 Q40,25 60,40 T100,40" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/><path d="M20,60 Q40,45 60,60 T100,60" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/><path d="M20,80 Q40,65 60,80 T100,80" fill="none" stroke="rgba(165,42,42,0.1)" stroke-width="1"/></svg>');
            background-size: 200px;
        }
        
        body.dark-mode .testimonials {
            background-color: #1a1212;
        }
        
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background-color: var(--card-bg-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 20px;
            position: relative;
            border: 2px solid var(--primary);
        }
        
        body.dark-mode .testimonial {
            background-color: var(--card-bg-dark);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* .testimonial::before {
            content: """;
            font-family: Georgia, serif;
            font-size: 6rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -30px;
            left: 10px;
        } */
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        .client {
            display: flex;
            align-items: center;
        }
        
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary);
            padding: 3px;
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .client-info h4 {
            color: var(--secondary);
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
        }
        
        body.dark-mode .client-info h4 {
            color: var(--primary);
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: var(--light);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        body.dark-mode .contact-item {
            background: var(--card-bg-dark);
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            background-color: var(--primary);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            margin-bottom: 10px;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
        }
        
        body.dark-mode .contact-details h3 {
            color: var(--primary);
        }
        
        .contact-form {
            background-color: var(--card-bg-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        body.dark-mode .contact-form {
            background-color: var(--card-bg-dark);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 25px;
            text-align: center;
        }
        
        body.dark-mode .contact-form h3 {
            color: var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background-color: var(--bg-light);
            color: var(--text-dark);
        }
        
        body.dark-mode .form-control {
            background-color: #2a1e20;
            border-color: #443033;
            color: var(--text-light);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 70px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        body.dark-mode footer {
            background-color: #130c0e;
        }
          .service-cities {
            padding: 50px 0 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cities-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .cities-title {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .cities-title h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
            display: inline-block;
            position: relative;
        }
        
        .cities-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary);
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .city-item {
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .city-item a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            width: 100%;
            display: block;
        }
        
        .city-item:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: translateX(5px);
        }
        
        .city-item:hover a {
            color: var(--primary);
        }
        
        .city-item::before {
            content: '❖';
            margin-right: 10px;
            color: var(--primary);
        }
        
        .city-item.hidden {
            display: none;
        }
        
        .toggle-cities {
            text-align: center;
            margin-top: 30px;
        }
        
        .toggle-btn {
            background: linear-gradient(135deg, var(--primary), #c6951d);
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .toggle-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-links h3 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 15px;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links ul li a::before {
            content: '❖';
            margin-right: 10px;
            color: var(--primary);
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
            transform: translateX(5px);
            transition: 0.3s;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        
        /* Responsive Styles */
        /* Mobile: 320px - 480px */
        @media (max-width: 480px) {
            /* Header */
            .logo h1 {
                display: none;
            }
            
            .logo-icon {
                font-size: 2.5rem;
                /* display: none; */
                margin-left: 17px;
            }
            
            .payment-btn {
                padding: 10px;
                width: auto;
                font-size: 0;
            }
            
            .payment-btn i {
                margin-right: 0;
                font-size: 1.3rem;
            }
            
            .header-actions {
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            /* Hero section */
            .hero h2 {
                font-size: 2.5rem;
                display: none ;
            }
            
            .hero p {
                font-size: 1.1rem;
                display: none;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
                display: none;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            /* About section */
            .about-content {
                flex-direction: column;
            }
            
            .about-text h3 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            /* Gallery */
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 350px;
            }
            
            /* Testimonials */
            .testimonial {
                padding: 25px;
            }
            
            .testimonial-content {
                font-size: 1rem;
            }
            
            /* Contact */
            .contact-item {
                padding: 15px;
            }
            
            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            /* Footer */
            .footer-logo {
                font-size: 2rem;
            }
        }
        
        /* Tablets: 481px - 768px */
        @media (min-width: 481px) and (max-width: 768px) {
            /* Header */
            .logo h1 {
                font-size: 1.8rem;
            }
            
            .payment-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            /* Hero section */
            .hero h2 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            /* About section */
            .about-content {
                flex-direction: column;
            }
            
            .about-text h3 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            /* Gallery */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-item {
                height: 400px;
            }
            
            /* Contact */
            .contact-form {
                padding: 30px;
            }
        }
        
        /* Laptops: 769px - 1024px */
        @media (min-width: 769px) and (max-width: 1024px) {
            /* Header */
            .logo h1 {
                font-size: 2rem;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            nav ul li a {
                font-size: 1rem;
            }
            
            .payment-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            /* Hero section */
            .hero h2 {
                font-size: 4rem;
            }
            
            /* Gallery */
            /* .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            } */
        }
        
        /* Desktop: 1025px and above */
        @media (min-width: 1025px) {
            /* .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            } */
        }
        
        /* General Responsive Adjustments */
        /* @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--header-bg-light);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            body.dark-mode nav ul {
                background-color: var(--header-bg-dark);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 20px;
            }
            
            .menu-toggle {
                display: block;
                font-size: 1.8rem;
                color: var(--text-dark);
                cursor: pointer;
            }
             */

             /* second.tyr  */

               @media (max-width: 768px) {
                 nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                /* right: 0; */
                width: 100%;
                background-color: var(--header-bg-light);
                flex-direction: column;
                padding: 20px 0;
                /* padding-right: 100%; */
                margin-left: 0%;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            body.dark-mode nav ul {
                background-color: var(--header-bg-dark);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 20px;
            }
            
            .menu-toggle {
                display: block;
                font-size: 1.8rem;
                color: var(--text-dark);
                cursor: pointer;
            }
            body.dark-mode .menu-toggle {
                color: var(--text-light);
            }
            
            .header-actions {
                display: flex;
                align-items: center;
                gap: 10px;
            }
        }
        
        @media (min-width: 769px) {
            .menu-toggle {
                display: none;
            }
        }
  