:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #1a1a1a; /* Dark Grey/Black */
    --accent-color: #f9f9f9; /* Off-white */
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 4px solid var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0; /* Slightly reduced padding */
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 140px; /* Increased for better visibility */
    width: auto;
    object-fit: contain;
    max-width: 300px;
}

/* 
.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
*/

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-family: var(--font-body); /* Lato for modern, clean look */
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

/* Elegant Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 80%; /* underline width */
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color); /* Keep text dark, focus on underline */
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-color: #333; /* Fallback color */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px; /* Spacing between buttons */
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px; /* Spacing between buttons */
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    margin-top: 15px;
    color: var(--light-text);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    z-index: -1;
}

/* Services Preview */
.services-section {
    background-color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent; /* Keep border logic for hover consistency */
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
}

/* Brands */
.brands-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: center;
    gap: 15px; /* Further reduced gap */
    overflow-x: auto; /* Allow horizontal scroll on very small screens if needed */
    padding-bottom: 10px; /* Space for potential scrollbar */
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* No gap needed without text */
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    min-width: 100px; /* Reduced min-width */
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.brand-item img {
    height: 40px; /* Slightly increased for visibility */
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq-section {
    background: var(--accent-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--light-text);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}



/* Instagram Gallery */
.instagram-section {
    padding: 60px 0;
    background: var(--secondary-color);
}

.instagram-section .section-title h2 {
    color: white;
}

.instagram-section .section-title p {
    color: #ccc;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item::before {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 2;
    transition: var(--transition);
}

.instagram-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    opacity: 0;
    transition: var(--transition);
}

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

.instagram-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.instagram-item:hover::after {
    opacity: 1;
}

.instagram-follow-btn {
    text-align: center;
    margin-top: 30px;
}

/* Enhanced About Section */
.about-section-enhanced {
    position: relative;
    overflow: hidden;
}

.about-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a227 100%);
    opacity: 0.05;
    z-index: 0;
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-enhanced {
    position: relative;
}

.about-img-enhanced img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-img-enhanced::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-img-enhanced::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    padding: 10px 15px;
    border-radius: 50px;
}

.about-feature-item i {
    color: var(--primary-color);
}

.about-feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

.decorative-text {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.05;
    white-space: nowrap;
    pointer-events: none;
}

@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .decorative-text {
        display: none;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .brands-grid {
        gap: 20px;
    }
    
    .brand-item {
        padding: 15px 20px;
    }
}

/* Decorative Footer */
footer {
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ad7575;
    padding: 80px 0 30px;
    border-top: 5px solid;
    border-image: linear-gradient(to right, #ad7575, #fdfbf7, #ad7575) 1;
    position: relative;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    align-items: start; /* Align all columns to the top */
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: #ad7575;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ad7575;
}

.footer-col p {
    color: #ad7575;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ad7575;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 2px solid #ad7575;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ad7575;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #ad7575;
    color: #fff;
    box-shadow: 0 0 15px rgba(173, 117, 117, 0.5);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(173, 117, 117, 0.5), transparent);
    margin: 30px 0;
}

.copyright {
    text-align: center;
    color: #ad7575;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 100px;
        max-width: 220px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hero {
        height: 70vh;
        padding: 20px 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-banner.jpg');
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
}

/* Mobile Logo Responsive */
@media (max-width: 480px) {
    .logo-img {
        height: 70px;
        max-width: 150px;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-banner.jpg');
        background-position: center center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

/* Logo Image Styles - Added for Image Logo */
.logo a {
    display: flex;
    align-items: center;
    border: none; /* Remove any border if exists */
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}


/* Why Choose Us - Decorative */
.why-choose-section {
    background-color: #fdfbf7; /* Light cream */
    background-image: radial-gradient(#d4af37 0.5px, transparent 0.5px), radial-gradient(#d4af37 0.5px, #fdfbf7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
}

/* Overlay to soften pattern */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 247, 0.9);
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #fdfbf7;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: white;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Corner decoration */
.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--primary-color) transparent transparent;
    opacity: 0;
    transition: var(--transition);
}

.feature-box:hover::after {
    opacity: 0.2;
}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000; /* Ensure it stays on top */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* Pulsing Animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Exit Intent Popup */
.exit-modal {
    display: none;
    position: fixed;
    z-index: 3000; /* Higher than booking modal */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.exit-modal-content {
    background: linear-gradient(135deg, #fff 0%, #fffcf5 100%);
    margin: 10% auto;
    padding: 0;
    border: 2px solid var(--primary-color);
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    text-align: center;
    overflow: hidden;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.exit-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
}

.exit-header h2 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
}

.exit-body {
    padding: 30px;
}

.discount-code {
    background: #eee;
    padding: 10px 20px;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px dashed #999;
    display: inline-block;
    margin: 20px 0;
    color: var(--secondary-color);
}

/* Checklist Section */
.checklist-section {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    
    color: white;
    text-align: center;
    padding: 80px 0;
}

.checklist-content {
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(212, 175, 55, 0.5);
    padding: 40px;
    background: rgba(0,0,0,0.5);
}

.checklist-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.checklist-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}


/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: none; /* Hidden by default on desktop */
    justify-content: space-around;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.mobile-sticky-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    margin: 0 5px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-call {
    background-color: var(--secondary-color);
}

.btn-whatsapp-bar {
    background-color: #25d366;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
    /* Adjust footer or floating btn to not overlap */
    .whatsapp-float {
        bottom: 80px; /* Move floating button up */
    }
}


/* Bridal Beauty Calculator */
.calculator-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.calculator-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fdfbf7;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.calculator-box input[type='date'] {
    width: 100%;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 5px;
}

.timeline-result {
    display: none; /* Hidden initially */
    text-align: left;
    margin-top: 30px;
    border-top: 2px dashed var(--primary-color);
    padding-top: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '\f00c'; /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.timeline-date {
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}


/* Gold Gradient Text Removed */
/* h1, h2, .logo a styles reverted to default */

/* Fix for Logo Image vs Text */
/* Since we use an image logo now, the gradient text rule might hide it if applied to the container. 
   We need to ensure the image remains visible. */
.logo a {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: inherit;
    display: flex;
}

/* Elegant Input Fields */
input[type='text'], input[type='email'], input[type='tel'], input[type='date'], select, textarea {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 5px !important;
    padding: 15px !important;
    font-family: var(--font-body) !important;
    transition: all 0.3s ease !important;
}

input:focus, select:focus, textarea:focus {
    background: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
    outline: none;
}

/* Image Zoom on Hover */
.about-img-enhanced img, .service-overview-card img, .portfolio-item img, .blog-img {
    transition: transform 0.5s ease;
}

.about-img-enhanced:hover img, .service-overview-card:hover img, .portfolio-item:hover img, .blog-card:hover .blog-img {
    transform: scale(1.05);
}


html, body {
    overflow-x: hidden;
    width: 100%;
}
.exit-modal {
    overflow-y: auto; /* Allow scrolling inside modal if needed */
}


/* Testimonial Carousel */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Share Buttons */
.share-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-btn {
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.share-wa { background-color: #25d366; }
.share-pin { background-color: #bd081c; }

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, #b88746 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b88746;
}

/* Scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}


/* Heritage Decor Styles Removed */



/* In My Kit Section */
.kit-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kit-card {
    background: #fdfbf7;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    border-radius: 10px;
}

.kit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.kit-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.kit-card:hover .kit-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.kit-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.kit-card p {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.5;
}


/* Full Width Real Bride Spotlight */
.stories-spotlight {
    background: #0f0f0f;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stories-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spotlight-img-box {
    position: relative;
}

.spotlight-img-box img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.spotlight-img-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.spotlight-content h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 25px;
}

.spotlight-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.spotlight-pattern {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4af37' d='M50 20c-5-10-15-15-25-10 0 10 5 20 15 25-10 5-15 15-10 25 10 0 20-5 25-15 5 10 15 15 25 10 0-10-5-20-15-25 10-5 15-15 10-25-10 0-20 5-25 15z' opacity='0.1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}



