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

/* ==========================================================================
   0. DESIGN SYSTEM & ROOT VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-midnight: #0A2430;      /* Main deep background (Firefly) */
    --color-midnight-card: #123340; /* Lighter container background for dark sections */
    --color-teal-dark: #164A56;     /* Radial gradient center */
    --color-teal-brand: #2C969B;    /* Brand teal button/icon */
    --color-teal-light: #EAF9F4;   /* Light section background (Aqua Spring) */
    --color-accent: #14B8A6;        /* Bright teal glow */
    --color-accent-glow: rgba(20, 184, 166, 0.3);
    --color-gold: #F59E0B;          /* Review stars, bulbs, warning badge */
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-slate-100: #F1F5F9;
    --text-slate-300: #CBD5E1;
    --text-slate-400: #94A3B8;
    --text-slate-600: #475569;
    --text-slate-800: #1E293B;
    --text-slate-950: #0F172A;
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Structural variables */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-slate-800);
    background-color: var(--text-slate-100);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-slate-950);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--color-teal-brand);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px var(--color-accent-glow), 0 4px 6px -4px var(--color-accent-glow);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--color-midnight);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: var(--color-teal-dark);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 6rem 1.5rem;
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

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

/* Typography elements */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-teal-brand);
    background-color: rgba(44, 150, 155, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Badges for dark sections */
.section-badge-light {
    color: var(--color-accent);
    background-color: rgba(20, 184, 166, 0.15);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-slate-950);
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-slate-600);
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-subtitle-light {
    color: var(--text-slate-300);
}

/* Micro-animations: Reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   1. NAVIGATION HEADER
   ========================================================================== */
.header-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
}

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

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

.logo-img {
    height: 48px;
    width: auto;
}

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

.nav-link {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.header-contact-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-phone svg {
    color: var(--color-accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    margin: 5px 0;
    transition: var(--transition-bounce);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
    background: radial-gradient(circle at 50% 30%, var(--color-teal-dark) 0%, var(--color-midnight) 70%);
    padding: 10rem 1.5rem 7rem 1.5rem;
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Hanging Lights String */
.hero-lights-string {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    pointer-events: none;
}

.hero-lights-svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1.5;
    fill: none;
}

.light-bulb {
    stroke: none;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: center;
}

.bulb-red {
    fill: #EF4444;
    animation-name: pulse-red;
}
.bulb-green {
    fill: #10B981;
    animation-name: pulse-green;
    animation-delay: 0.5s;
}
.bulb-blue {
    fill: #3B82F6;
    animation-name: pulse-blue;
    animation-delay: 1s;
}
.bulb-yellow {
    fill: #F59E0B;
    animation-name: pulse-yellow;
    animation-delay: 1.5s;
}

@keyframes pulse-red {
    0%, 100% { fill: #991B1B; filter: drop-shadow(0 0 0px #EF4444); }
    50% { fill: #EF4444; filter: drop-shadow(0 0 8px #EF4444); }
}
@keyframes pulse-green {
    0%, 100% { fill: #065F46; filter: drop-shadow(0 0 0px #10B981); }
    50% { fill: #10B981; filter: drop-shadow(0 0 8px #10B981); }
}
@keyframes pulse-blue {
    0%, 100% { fill: #1E40AF; filter: drop-shadow(0 0 0px #3B82F6); }
    50% { fill: #3B82F6; filter: drop-shadow(0 0 8px #3B82F6); }
}
@keyframes pulse-yellow {
    0%, 100% { fill: #854D0E; filter: drop-shadow(0 0 0px #F59E0B); }
    50% { fill: #F59E0B; filter: drop-shadow(0 0 8px #F59E0B); }
}

.hero .section-badge {
    background-color: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-title span {
    color: var(--color-accent);
    font-style: italic;
}

.hero-paragraph {
    font-size: 1.2rem;
    color: var(--text-slate-300);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4.5rem;
}

/* Bullet list underneath buttons */
.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-slate-300);
}

.hero-bullet-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-bullet-item.centered-below {
    width: 100%;
    justify-content: center;
    margin-top: -1rem;
}

.hero-bullet-item.centered-below svg {
    color: var(--color-gold);
}

/* ==========================================================================
   3. SERVICES SECTION
   ========================================================================== */
.services {
    background-color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.service-card {
    background-color: var(--text-slate-100);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-bounce);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: rgba(44, 150, 155, 0.2);
}

.service-icon-box {
    width: 54px;
    height: 54px;
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1.75rem;
}

.service-icon-box svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-slate-950);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-slate-600);
    line-height: 1.6;
}

/* ==========================================================================
   4. HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works {
    background-color: var(--color-teal-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background-color: var(--text-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    margin: 0 auto 1.75rem auto;
    box-shadow: 0 4px 10px rgba(44, 150, 155, 0.2);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-slate-950);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-slate-600);
    line-height: 1.5;
}

/* ==========================================================================
   5. WHY US SECTION
   ========================================================================== */
.why-us {
    background-color: var(--text-white);
}

.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content {
    text-align: left;
}

.why-us-content .section-badge {
    margin-bottom: 1.25rem;
}

.why-us-content .section-title {
    margin-bottom: 1.5rem;
}

.why-us-paragraph {
    font-size: 1.05rem;
    color: var(--text-slate-600);
    margin-bottom: 2rem;
}

.why-us-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.why-us-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-slate-800);
    margin-bottom: 1rem;
}

.why-us-list-item svg {
    color: #10B981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Illustration Container */
.why-us-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Night House SVG Illustration */
.night-house-illustration {
    background-color: var(--color-midnight);
    width: 100%;
    height: 380px;
    display: block;
}

.badge-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-teal-brand);
}

.badge-overlay-text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-slate-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   6. GALLERY SECTION
   ========================================================================== */
.gallery {
    background-color: var(--text-slate-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background-color: var(--color-midnight);
    group: hover;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 36, 48, 0.9) 0%, rgba(10, 36, 48, 0.4) 60%, transparent 100%);
    color: var(--text-white);
    display: flex;
    align-items: flex-end;
    opacity: 1; /* Always show labels in design */
}

.gallery-label {
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   7. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    background-color: var(--color-midnight);
    color: var(--text-white);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-midnight-card);
    padding: 3rem 2.25rem 2.5rem 2.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    color: var(--color-gold);
    fill: var(--color-gold);
    width: 18px;
    height: 18px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-slate-300);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
}

.user-meta h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}

.user-meta p {
    font-size: 0.8rem;
    color: var(--text-slate-400);
}

/* ==========================================================================
   8. PACKAGES SECTION
   ========================================================================== */
.packages {
    background-color: var(--text-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    align-items: stretch;
}

.package-card {
    background-color: var(--text-slate-100);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-bounce);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    border: none;
    z-index: 10;
}

.package-card.featured:hover {
    box-shadow: 0 30px 50px -10px rgba(44, 150, 155, 0.4);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--color-gold);
    color: var(--text-slate-950);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: var(--border-radius-full);
}

.package-card h3 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: var(--text-slate-950);
}

.package-card.featured h3 {
    color: var(--text-white);
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-slate-600);
    margin-bottom: 2rem;
}

.package-card.featured .package-desc {
    color: var(--text-slate-100);
}

.package-price {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-slate-950);
}

.package-card.featured .package-price {
    color: var(--text-white);
}

.package-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-slate-600);
}

.package-card.featured .package-price span {
    color: var(--text-slate-100);
}

.package-features {
    list-style: none;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.package-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-slate-800);
    margin-bottom: 1.2rem;
}

.package-card.featured .package-feature-item {
    color: var(--text-white);
}

.package-feature-item svg {
    color: #10B981;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.package-card.featured .package-feature-item svg {
    color: var(--color-accent);
}

.package-card .btn {
    width: 100%;
}

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq {
    background-color: var(--color-teal-light);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--text-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-slate-950);
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-teal-brand);
}

.faq-icon {
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-teal-brand);
    transition: var(--transition-bounce);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 2rem 1.75rem 2rem;
    font-size: 0.95rem;
    color: var(--text-slate-600);
    line-height: 1.6;
}

/* Expanded state handled by JS */

/* ==========================================================================
   10. CTA BAND SECTION
   ========================================================================== */
.cta-band {
    background-color: var(--text-white);
    padding: 5rem 1.5rem;
}

.cta-card-wrapper {
    background: linear-gradient(135deg, #10B981 0%, var(--color-teal-brand) 100%);
    border-radius: var(--border-radius-lg);
    padding: 5rem 4rem;
    color: var(--text-white);
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(44, 150, 155, 0.3);
}

.cta-card-wrapper h2 {
    font-size: 2.75rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card-wrapper p {
    font-size: 1.05rem;
    color: var(--text-slate-100);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.cta-card-wrapper .btn {
    background-color: var(--text-white);
    color: var(--color-teal-brand);
}

.cta-card-wrapper .btn:hover {
    background-color: var(--text-slate-100);
    color: var(--color-midnight);
}

/* ==========================================================================
   11. CONTACT SECTION
   ========================================================================== */
.contact {
    background-color: var(--text-slate-100);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    text-align: left;
}

.contact-info .section-badge {
    margin-bottom: 1.25rem;
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-slate-600);
    margin-bottom: 3.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
}

.contact-method-detail h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-slate-400);
    margin-bottom: 0.15rem;
}

.contact-method-detail p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-slate-800);
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--text-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group.no-margin {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-slate-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.9rem 1.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid #E2E8F0;
    background-color: #F8FAFC;
    color: var(--text-slate-800);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal-brand);
    background-color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(44, 150, 155, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

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

.contact-form-card .btn-submit {
    width: 100%;
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    box-shadow: 0 10px 20px -5px rgba(44, 150, 155, 0.3);
}

.contact-form-card .btn-submit:hover {
    background-color: var(--color-accent);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-slate-400);
    margin-top: 1rem;
}

/* Form Loader / Success states */
.loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    color: #10B981;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-slate-950);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-slate-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--color-midnight);
    color: var(--text-slate-300);
    padding: 5rem 1.5rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-img {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-slate-400);
    line-height: 1.65;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-slate-400);
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-slate-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-slate-400);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--color-accent);
}


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Smaller Desktop Viewports (under 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Hide the 3rd testimonial card on tablet to balance layout if needed, or wrap */
    .testimonial-card:last-child {
        grid-column: span 2;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    .why-us .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-us-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form-card {
        max-width: 600px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile Viewports (under 768px - matching Figma 390px layout) */
@media (max-width: 768px) {
    section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Hamburger Menu Open functionality */
    .burger-menu {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-midnight);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        width: 100%;
    }
    
    .header-contact-cta {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }
    
    /* Hamburger Active Rotation Animation */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero changes */
    .hero {
        padding: 7rem 1rem 5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        max-width: 280px;
        margin: 0 auto 3rem auto;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .hero-bullet-item.centered-below {
        margin-top: 0;
    }
    
    /* Grids to single column */
    .services-grid,
    .steps-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:last-child {
        grid-column: auto;
    }
    
    /* CTA Card Band */
    .cta-card-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .cta-card-wrapper h2 {
        font-size: 1.85rem;
    }
    
    /* Contact Form Grid to Single Column */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    /* Footer Layout Collapse */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

/* ==========================================================================
   Service Includes / What Happens Next Section
   ========================================================================== */
.service-includes {
    background-color: var(--text-white);
    padding: 6rem 1.5rem;
}

.service-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .service-includes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.include-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.include-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.include-card.featured {
    background: linear-gradient(135deg, #28C399, #268DB0);
    border: none;
    color: var(--text-white);
}

.include-card.featured h3 {
    color: var(--text-white);
}

.include-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.include-icon-container {
    width: 54px;
    height: 54px;
    background-color: var(--color-teal-brand);
    color: var(--text-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    font-size: 1.35rem;
}

.include-icon-container.featured {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.include-card h3 {
    font-size: 1.35rem;
    color: var(--text-slate-950);
    margin-bottom: 1rem;
}

.include-card p {
    font-size: 0.95rem;
    color: var(--text-slate-600);
    line-height: 1.6;
}

.include-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-midnight);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Callout Box */
.service-callout-box {
    background-color: #EAF5F2; /* Soft mint/sage background */
    border: 1px solid #CBDCD6;
    border-radius: var(--border-radius-md);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-callout-box p {
    font-size: 1.1rem;
    color: var(--text-slate-950);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    font-weight: 500;
}

