/* --- Variables & Reset (THEME UPDATED) --- */
:root {
    /* Logo Colors */
    --maroon: #881E2F;         /* The deep red from the logo symbol */
    --maroon-dark: #5e121d;    /* Darker shade for hovers */
    --blush: #fff7f5;          /* The background peach/pink from the card */
    --blush-light: #FFF5F2;    /* Lighter version for sections */
    
    /* Neutrals */
    --text-main: #2C1810;      /* Dark Brown/Charcoal for text (instead of black) */
    --text-muted: #6D544E;     /* Muted earth tone */
    --white: #ffffff;
    
    /* Functional */
    --nav-scroll-bg: rgba(249, 228, 222, 0.95); /* Glassy Blush */
    --overlay-dark: rgba(60, 10, 20, 0.4);      /* Warm dark overlay */
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--blush); /* Changed from Black to Blush */
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    background-color: white !important;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--nav-scroll-bg);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(136, 30, 47, 0.1); /* Maroon tinted shadow */
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--maroon); /* Updated to Maroon */
}

/* Desktop Links */
.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--maroon);
}

/* Icons & Hamburger */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--maroon);
}

.icon-link {
    font-size: 1.1rem;
    transition: color 0.3s;
    color: var(--text-main);
}

.icon-link:hover { color: var(--maroon); }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--maroon); /* Dark bars */
    transition: 0.3s;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--blush-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--maroon);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Updated Image to match new vibe */
    background: url('image/1.jpg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(to bottom, rgba(80, 20, 30, 0.2), rgba(80, 20, 30, 0.5));
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem; /* Larger for Hindi/English mix */
    font-weight: 700;
    color: var(--white); /* White text stands out on photos */
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

/* Buttons (Updated Colors) */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px; /* Softer pill shape */
}

/* Primary: Maroon Background */
.btn-primary {
    background-color: var(--maroon);
    color: var(--white);
    border: 2px solid var(--maroon);
}

.btn-primary:hover {
    background-color: var(--maroon-dark);
    border-color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(136, 30, 47, 0.2);
}

/* Secondary: White/Transparent Outline */
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 3rem; }
    .btn { width: 100%; max-width: 300px; }
}

/* --- About Section (Light Mode) --- */
.about-section {
    padding: 100px 0;
    /* background-color: var(--blush); Peach Background */
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-col { flex: 1; position: relative; }
.image-frame { position: relative; z-index: 1; }

.story-img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(136, 30, 47, 0.15); /* Maroon shadow */
    display: block;
}

.frame-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    /* border: 1px solid var(--maroon); */
    z-index: -1;
    opacity: 0.3;
}

.about-text-col { flex: 1; }

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--maroon);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.2;
}

.body-text {
    font-family: var(--font-sans);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.body-text strong { color: var(--maroon); font-weight: 600; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(136, 30, 47, 0.1);
    padding-top: 30px;
}

.feature-item h5 {
    color: var(--text-main);
    font-family: var(--font-serif);
    margin: 10px 0 5px;
    font-size: 1.1rem;
}

.feature-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }

.feature-icon {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.text-link {
    color: var(--maroon);
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.text-link:hover { padding-left: 5px; color: var(--maroon-dark); }

@media (max-width: 968px) {
    .about-wrapper { flex-direction: column; gap: 50px; }
    .frame-accent { top: 15px; left: 15px; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* --- Collections Section (Clean White Cards) --- */
.collections-section {
    padding: 100px 0;
    background-color: var(--blush-light); /* Lighter contrast */
}

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

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.collection-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px; /* Slightly softer */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.featured-card { grid-column: span 2; }

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Gradient updated to warm tones */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.8), rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--blush-light);
    margin-bottom: 10px;
    transition: transform 0.4s;
}

.card-content p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #e0d0cc;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-block;
    color: var(--white);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--maroon);
    padding-bottom: 5px;
    transition: color 0.3s;
}

.btn-link:hover { color: var(--maroon); border-bottom-color: var(--white); }
.collection-card:hover .card-bg { transform: scale(1.1); }
.collection-card:hover .card-content h3 { transform: translateY(-5px); }

@media (max-width: 968px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card { grid-column: span 2; }
}
@media (max-width: 600px) {
    .collections-grid { grid-template-columns: 1fr; gap: 20px; }
    .featured-card { grid-column: span 1; height: 400px; }
}

/* --- Best Sellers (Warm Theme) --- */
.bestsellers-section {
    padding: 80px 0;
    background-color: var(--white); /* Crisp white background */
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 0 10px;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--maroon);
    color: var(--maroon);
    width: 45px; height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

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

.product-carousel {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar { display: none; }

.product-card {
    min-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.product-image-box {
    position: relative;
    height: 380px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f4f4f4;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-box img { transform: scale(1.05); }

.product-actions {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(136, 30, 47, 0.9), transparent); /* Maroon Gradient */
    display: flex;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-actions { transform: translateY(0); }

.action-btn {
    flex: 1; padding: 12px; border: none;
    font-family: var(--font-sans); font-weight: 600;
    cursor: pointer; text-transform: uppercase; font-size: 0.8rem;
}
.action-btn.primary { background-color: var(--white); color: var(--maroon); }

.product-info { text-align: center; }

.category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-weight: 600;
}

.price {
    font-family: var(--font-sans);
    color: var(--maroon);
    font-weight: 700;
    font-size: 1rem;
}

/* --- Bespoke Section (Rich Maroon Background?) No, stay soft --- */
.bespoke-section {
    padding: 100px 0;
    background-color: var(--blush);
    /* Subtle radial gradient */
    background-image: radial-gradient(circle at center, #ffffff 0%, var(--blush) 70%);
}

.section-desc {
    max-width: 600px;
    margin: -20px auto 60px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.process-line {
    position: absolute;
    top: 40px; left: 0; width: 100%; height: 1px;
    background: rgba(136, 30, 47, 0.3); /* Maroon line */
    z-index: 0;
}

.step-item {
    flex: 1; position: relative; z-index: 1;
    padding: 0 20px; text-align: center;
}

.step-icon {
    width: 80px; height: 80px;
    background-color: var(--blush); /* Matches bg */
    border: 1px solid var(--maroon);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    color: var(--maroon);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(136, 30, 47, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background-color: var(--maroon);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(136, 30, 47, 0.3);
}

.step-item h3 {
    font-family: var(--font-serif);
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-item p {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bespoke-cta { margin-top: 50px; }

@media (max-width: 768px) {
    .process-steps { flex-direction: column; align-items: center; gap: 40px; }
    .process-line { display: none; }
}

/* --- Craftsmanship Parallax --- */
.quality-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--white);
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Image of craftsmanship */
    background-image: url('https://images.unsplash.com/photo-1590736969955-71cc94801759?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.quality-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 24, 16, 0.85); /* Dark Brown tint instead of black */
    z-index: 1;
}

.relative-content { position: relative; z-index: 2; }

.quality-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--blush); /* Very light pink text */
    line-height: 1.8;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    border-top: 1px solid rgba(249, 228, 222, 0.3);
    border-bottom: 1px solid rgba(249, 228, 222, 0.3);
    padding: 40px 0;
}

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

.badge-icon {
    font-size: 2.5rem;
    color: var(--blush); /* Icons in blush */
    margin-bottom: 15px;
}

.badge-item h5 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.badge-item p { font-family: var(--font-sans); font-size: 0.85rem; color: #ccc; }

.play-btn {
    background: transparent;
    border: 2px solid var(--blush);
    color: var(--blush);
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.play-btn:hover { background: var(--blush); border-color: var(--blush); color: var(--maroon); }

@media (max-width: 968px) { .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 600px) {
    .parallax-bg { background-attachment: scroll; }
    .badges-grid { grid-template-columns: 1fr; gap: 30px; border: none; }
}

/* --- Reviews Section (Cards on Blush) --- */
.reviews-section {
    padding: 100px 0;
    background-color: var(--blush-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(136, 30, 47, 0.1);
    box-shadow: 0 15px 40px rgba(136, 30, 47, 0.1);
}

.quote-icon {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 3rem;
    color: var(--maroon);
    opacity: 0.1;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 80px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.reviewer-img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--maroon);
}

.reviewer-details h5 {
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: flex; align-items: center; gap: 5px;
}

.verified-badge { color: var(--maroon); font-size: 0.8rem; }
.stars { color: #D4AF37; /* Keep stars gold for recognition */ font-size: 0.8rem; letter-spacing: 2px; }

@media (max-width: 968px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* --- Offers Mosaic --- */
.offers-section {
    padding: 100px 0;
    background-color: var(--white);
}

.offers-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #000;
}

.offer-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s ease, opacity 0.3s;
}

.offer-card:hover .offer-bg { transform: scale(1.05); opacity: 0.6; }

.offer-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px; z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.center-content {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto; text-align: center;
    width: 100%; background: none;
}

.offer-tag {
    display: inline-block;
    background-color: var(--maroon);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.offer-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem; color: var(--white);
    margin-bottom: 10px; line-height: 1.1;
}

.offer-content p { font-size: 0.95rem; color: var(--blush-light); margin-bottom: 20px; }

.offer-highlight {
    font-family: var(--font-serif);
    color: var(--blush) !important;
    font-size: 1.2rem !important;
    font-style: italic;
}

/* Grid Logic (Same as before) */
.large-card { grid-column: span 7; grid-row: span 2; }
.medium-card { grid-column: span 5; grid-row: span 1; }
.small-card { grid-column: span 2; grid-row: span 1; }
.offers-mosaic > .small-card:nth-child(3) { grid-column: 8 / 11; }
.offers-mosaic > .small-card:nth-child(4) { grid-column: 11 / 13; }

/* Timer */
.countdown-timer { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
.time-box { text-align: center; border: 1px solid rgba(255,255,255,0.3); padding: 10px; min-width: 60px; }
.time-box span { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: var(--blush); }
.time-box small { font-size: 0.7rem; text-transform: uppercase; color: #ccc; }

.small-btn { padding: 10px 20px; font-size: 0.8rem; }
.btn-text {
    color: var(--white); text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 2px;
    border-bottom: 1px solid var(--blush); padding-bottom: 5px;
}

@media (max-width: 968px) {
    .offers-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
    .large-card, .medium-card, .small-card, 
    .offers-mosaic > .small-card:nth-child(3), 
    .offers-mosaic > .small-card:nth-child(4) {
        grid-column: span 1; grid-row: auto; height: 400px;
    }
}

/* --- Enquiry Section (Light/Blush Theme) --- */
.enquiry-section {
    padding: 100px 0;
    background-color: var(--blush);
}

.enquiry-container { display: flex; align-items: center; gap: 80px; }
.form-column { flex: 1; }
.form-desc { color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 30px; }
.form-row { display: flex; gap: 30px; }
.input-group { position: relative; width: 100%; }

.form-input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(136, 30, 47, 0.3); /* Maroon border */
    padding: 15px 0;
    color: var(--text-main);
    font-family: var(--font-sans); font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-input:focus { border-bottom-color: var(--maroon); }

.form-label {
    position: absolute; top: 15px; left: 0;
    color: var(--text-muted);
    font-family: var(--font-sans); font-size: 1rem;
    pointer-events: none; transition: 0.3s ease all;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px; font-size: 0.75rem; color: var(--maroon);
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}

textarea.form-input { resize: none; }
.submit-btn { align-self: flex-start; min-width: 200px; margin-top: 10px; cursor: pointer; }
.form-message { display: none; color: var(--maroon); font-family: var(--font-serif); margin-top: 20px; font-size: 1.1rem; font-style: italic; }

.enquiry-image { flex: 1; height: 600px; position: relative; }
.enquiry-image img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
    box-shadow: 0 20px 50px rgba(136, 30, 47, 0.15);
}

@media (max-width: 968px) {
    .enquiry-container { flex-direction: column-reverse; gap: 50px; }
    .enquiry-image { height: 300px; width: 100%; }
    .form-row { flex-direction: column; gap: 30px; }
}

/* --- Footer (Dark Maroon Base) --- */
.footer-section {
    background-color: var(--text-main); /* Dark brown/black base */
    color: #ccc;
    padding: 80px 0 30px;
    border-top: 5px solid var(--maroon);
}

.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-logo {
    font-family: var(--font-serif);
    color: var(--blush); /* Blush logo on dark footer */
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-desc { margin-bottom: 40px; max-width: 400px; line-height: 1.6; }
.info-block { margin-bottom: 30px; }

.info-block h4 {
    color: var(--blush);
    font-family: var(--font-sans); margin-bottom: 10px;
    font-size: 1rem; display: flex; align-items: center; gap: 10px;
}

.info-block h4 i { color: var(--maroon); }

.info-block p { margin-left: 28px; line-height: 1.6; font-size: 0.95rem; }
.direction-link { margin-left: 28px; color: var(--maroon); font-size: 0.85rem; text-transform: uppercase; text-decoration: underline; }

.footer-actions { display: flex; gap: 15px; margin-top: 40px; }

/* Inverted Map to match Maroon theme? No, keep B&W */
.footer-map { height: 100%; min-height: 400px; border-radius: 2px; overflow: hidden; position: relative; }
.footer-map iframe { filter: grayscale(100%) invert(92%) contrast(83%); opacity: 0.8; transition: all 0.3s; }
.footer-map iframe:hover { opacity: 1; filter: grayscale(0%); }

.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 50px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px; }

.newsletter-box h4 { color: var(--white); font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; }
.subscribe-form { display: flex; gap: 10px; margin-top: 20px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 10px; max-width: 400px; }
.subscribe-form input { background: transparent; border: none; color: var(--white); width: 100%; outline: none; font-family: var(--font-sans); }
.subscribe-form button { background: transparent; border: none; color: var(--maroon); text-transform: uppercase; cursor: pointer; font-weight: 600; font-size: 0.8rem; letter-spacing: 1px; }

.copyright-row { text-align: right; font-size: 0.85rem; }
.social-links { margin-top: 15px; display: flex; gap: 20px; justify-content: flex-end; }
.social-links a { color: #888; font-size: 1.2rem; transition: color 0.3s; }
.social-links a:hover { color: var(--maroon); }

.float-whatsapp {
    position: fixed; bottom: 30px; right: 30px;
    /* background-color: #25d366; color: #FFF; border-radius: 50%; */
    text-align: center; font-size: 30px; 
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.float-whatsapp:hover { transform: scale(1.1); }

@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-map { height: 300px; min-height: auto; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .copyright-row { text-align: left; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
    .social-links { justify-content: flex-start; }
}