/* ==========================================================================
   Ponmani Florist - Redesign stylesheet
   Colors: Forest Green, Marigold Gold, Crimson Rose, Warm Cream
   Typography: Playfair Display (Serif), Jost (Sans-serif)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --cream: #FAF6F0;
    --cream-dark: #F3ECE2;
    --white: #ffffff;
    --forest: #1b3a24;
    --forest-light: #2c5639;
    --forest-ultra-light: rgba(27, 58, 36, 0.04);
    --forest-glass: rgba(27, 58, 36, 0.88);
    --marigold: #e58e26;
    --marigold-dark: #b56711;
    --marigold-light: #fad390;
    --crimson: #bd3a53;
    --crimson-light: #e55039;
    --crimson-shimmer: #ffeef0;
    --charcoal: #2d332f;
    --gray-text: #5a635e;
    --border-color: rgba(27, 58, 36, 0.08);

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Jost', sans-serif;

    --shadow-sm: 0 4px 12px rgba(27, 58, 36, 0.04);
    --shadow-md: 0 8px 24px rgba(27, 58, 36, 0.08);
    --shadow-lg: 0 20px 48px rgba(27, 58, 36, 0.12);
    --shadow-gold: 0 8px 24px rgba(229, 142, 38, 0.2);

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.4s var(--ease);
}

/* ── Reset & Base Styles ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

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

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

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--forest);
}

/* ── Global Layout Containers ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--forest);
    color: var(--cream);
}

/* ── Section Titles ── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.label-gold {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--marigold);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.label-gold::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--marigold);
    margin: 8px auto 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--forest);
}

.section-dark .section-title {
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--crimson);
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-text);
    margin-top: 18px;
}

.section-dark .section-desc {
    color: rgba(250, 246, 240, 0.7);
}

/* ── Button Typography & Styles ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--marigold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--marigold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(229, 142, 38, 0.35);
}

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

.btn-secondary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(27, 58, 36, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--forest-light);
    color: var(--forest);
    padding: 14.5px 34.5px;
}

.btn-outline:hover {
    background: var(--forest-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(250, 246, 240, 0.3);
    color: var(--cream);
    padding: 14.5px 34.5px;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--forest);
    transform: translateY(-2px);
}

/* ── Header & Navigation ── */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

#main-header.scrolled {
    padding: 14px 0;
    background: rgba(250, 246, 240, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
}

#main-header.scrolled .logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo-text span {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--marigold-light);
    margin-top: 5px;
    transition: var(--transition);
}

#main-header.scrolled .logo-text strong {
    color: var(--forest);
}

#main-header.scrolled .logo-text span {
    color: var(--marigold);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--marigold);
    transition: var(--transition);
}

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

#main-header.scrolled .nav-links a {
    color: var(--forest);
}

#main-header.scrolled .nav-links a:hover {
    color: var(--marigold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.nav-phone i {
    color: var(--marigold);
}

.nav-phone:hover {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}

#main-header.scrolled .nav-phone {
    color: var(--forest);
    border-color: var(--border-color);
    background: rgba(27, 58, 36, 0.02);
}

#main-header.scrolled .nav-phone:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

#main-header.scrolled .menu-toggle span {
    background-color: var(--forest);
}

/* ── Hero Section ── */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(27, 58, 36, 0.92) 0%, rgba(20, 42, 26, 0.96) 100%), 
                url('assets/hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--marigold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--marigold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--marigold-light);
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 246, 240, 0.75);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.03);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-visual:hover img {
    transform: scale(1.06);
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 240px;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-badge i {
    width: 42px;
    height: 42px;
    background: var(--crimson-shimmer);
    color: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-floating-badge p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.2;
}

.hero-floating-badge span {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-text);
    text-transform: none;
    margin-top: 2px;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Services Section ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(229, 142, 38, 0.2);
}

.service-img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease);
}

/* Align temple services image to top to show deity face clearly */
.service-img-container img[src*="temple_services"],
.modal-img-wrapper img[src*="temple_services"] {
    object-position: center top;
}

.service-card:hover .service-img-container img {
    transform: scale(1.08);
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    border: 1px solid rgba(27, 58, 36, 0.1);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-price-info {
    font-size: 0.72rem;
    color: var(--gray-text);
}

.service-price-info strong {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--forest);
    display: block;
}

.service-learn-more {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--marigold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .service-learn-more {
    color: var(--marigold-dark);
}

.service-learn-more i {
    transition: transform 0.3s;
}

.service-card:hover .service-learn-more i {
    transform: translateX(4px);
}

/* ── Gallery Section ── */
.bg-light {
    background-color: var(--cream-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 58, 36, 0.9) 0%, rgba(27, 58, 36, 0.4) 60%, rgba(27, 58, 36, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    backdrop-filter: blur(2px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s var(--ease);
}

.gallery-card:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--marigold-light);
    margin-bottom: 8px;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 4px;
}

.gallery-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Gallery Lightbox Modal ── */
.gallery-modal-container {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 20px;
    overflow: visible;
}

#gallery-modal-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.gallery-modal-info {
    background: var(--forest-glass);
    backdrop-filter: blur(12px);
    padding: 16px 32px;
    border-radius: 12px;
    margin-top: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    width: auto;
    min-width: 280px;
}

#gallery-modal-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--marigold-light);
    display: block;
}

#gallery-modal-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 4px;
    font-weight: 500;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
}

.gallery-nav-btn:hover {
    background: var(--marigold);
    border-color: var(--marigold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

/* Mobile responsive adjustments for navigation arrows */
@media (max-width: 768px) {
    .gallery-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(27, 58, 36, 0.7);
        border-color: rgba(255, 255, 255, 0.1);
    }
    .prev-btn {
        left: 12px;
    }
    .next-btn {
        right: 12px;
    }
}

/* ── About Section ── */
#about {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    background: var(--forest);
    color: var(--cream);
    padding: 24px;
    border-radius: 50% 50% 50% 0;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--cream);
}

.about-experience-badge strong {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1;
    display: block;
}

.about-experience-badge span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content .label-gold {
    margin-bottom: 20px;
}

.about-content .label-gold::after {
    margin: 8px 0 0 0;
}

.about-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-highlight-item i {
    width: 24px;
    height: 24px;
    background: var(--forest-ultra-light);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-highlight-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
}

.about-highlight-text p {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 2px;
}

/* ── Custom Consultation & Inquiry Form Section ── */
#consultation {
    background-color: var(--cream-dark);
}

.consultation-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.consultation-info {
    background: var(--forest);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.consultation-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.consultation-info-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.consultation-info-header p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(250, 246, 240, 0.75);
    line-height: 1.7;
}

.consultation-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 48px 0;
}

.consultation-channel-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.consultation-channel-item i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--marigold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.consultation-channel-text p {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 246, 240, 0.5);
}

.consultation-channel-text a, .consultation-channel-text span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 2px;
    display: block;
}

.consultation-channel-text a:hover {
    color: var(--marigold);
}

.consultation-info-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.consultation-info-footer h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--marigold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.consultation-info-footer p {
    font-size: 0.8rem;
    color: rgba(250, 246, 240, 0.6);
}

.consultation-form-wrapper {
    padding: 60px;
}

.consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    background-color: var(--cream);
    border-radius: 8px;
    color: var(--charcoal);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--forest);
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(27, 58, 36, 0.04);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    grid-column: span 2;
    margin-top: 10px;
}

/* ── Footer ── */
#main-footer {
    background-color: #122417;
    color: var(--cream);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-about .logo-title {
    color: var(--white);
}

.footer-about-text {
    font-size: 0.88rem;
    color: rgba(250, 246, 240, 0.6);
    line-height: 1.7;
    margin: 20px 0 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(250, 246, 240, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-socials a:hover {
    background: var(--marigold);
    color: var(--white);
    border-color: var(--marigold);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1.5px;
    background: var(--marigold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(250, 246, 240, 0.6);
}

.footer-links a:hover {
    color: var(--marigold);
    padding-left: 4px;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(250, 246, 240, 0.6);
    line-height: 1.5;
}

.footer-info-item i {
    color: var(--marigold);
    margin-top: 4px;
}

.footer-info-item span {
    display: block;
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: rgba(250, 246, 240, 0.6);
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    flex-grow: 1;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--marigold);
}

.newsletter-form button {
    background: var(--marigold);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--marigold-dark);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 0.78rem;
    color: rgba(250, 246, 240, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--marigold);
}

/* ── Interactive Modal for Services ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 36, 23, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white);
    width: 100%;
    max-width: 680px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s var(--ease);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--forest);
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--forest);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-img-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 12px;
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--marigold-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.modal-text {
    font-size: 0.92rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 16px;
}

/* ── Toast Notification ── */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    border-left: 4px solid var(--marigold);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 1.2rem;
}

.toast-notification.success i {
    color: var(--forest);
}

.toast-notification.success {
    border-left-color: var(--forest);
}

.toast-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ── Responsive Styling overrides ── */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 100px;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-img-wrapper {
        max-width: 360px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 580px;
        margin: 0 auto;
    }

    .consultation-layout {
        grid-template-columns: 1fr;
    }

    .consultation-info {
        padding: 50px;
    }

    .consultation-form-wrapper {
        padding: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-links, .nav-phone {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Navbar active state */
    .nav-container.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--cream);
        border-bottom: 1px solid var(--border-color);
        padding: 30px 0;
        box-shadow: var(--shadow-md);
        gap: 24px;
        align-items: center;
    }

    .nav-container.active .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-container.active .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-container.active .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .consultation-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .form-submit-btn {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .modal-body {
        padding: 24px;
    }
}
