/* ============================================================
WILDFLOWER SERVICES — style.css
============================================================ */

/* ---- CSS Variables ---- */
:root {
    --cyan:      #5ce1e6;
    --cyan-mid:  #64c6e5;
    --cyan-light:#a1e4f1;
    --lavender:  #c9bfe3;
    --pink:      #e2a9d6;
    --black:     #000000;
    --white:     #ffffff;
    --off-white: #f8f9fb;
    --dark:      #0d0d0d;
    --dark-mid:  #1a1a1a;
    --gray:      #6b7280;
    --gray-light:#e5e7eb;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', sans-serif;
    
    --radius:    12px;
    --radius-lg: 20px;
    --shadow:    0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cyan);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--cyan-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 225, 230, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.2);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.75rem;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}

/* ============================================================
NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links--left { justify-content: flex-end; }
.nav-links--right { justify-content: flex-start; }

.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    padding: 0rem 2rem 0rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-menu.open {
    max-height: 400px;
    padding: 1rem 2rem 1.5rem;
}
.mobile-menu a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
    transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--cyan); }

/* ============================================================
HERO
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-bottom: 8vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroScale 8s ease-out forwards;
}

@keyframes heroScale {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 940px;
    padding: 0 2rem 0 max(2rem, calc((100vw - 1180px) / 2 + 2rem));
    animation: heroFadeUp 1s ease 0.3s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--cyan-light);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.hero-cta-group .btn {
  width: fit-content;
  white-space: nowrap;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: max(2rem, calc((100vw - 1180px) / 2 + 2rem));
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroFadeUp 1s ease 1s both;
}

.hero-scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}


@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ============================================================
SECTION SHARED
============================================================ */
.section-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan-mid);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
}

.section-desc {
    margin-top: 1rem;
    color: var(--gray);
    font-weight: 300;
    font-size: 1rem;
}

/* ============================================================
INTRO
============================================================ */
.intro {
    padding: 7rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-text .section-label { margin-bottom: 1rem; }

.intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.intro-text h2 em {
    font-style: italic;
    color: var(--cyan-mid);
}

.intro-text p {
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.intro-text .btn { margin-top: 1.5rem; }

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* .stat-card.accent {
background: var(--dark);
border-color: var(--dark);
color: var(--white);
} */

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--cyan);
}


.stat-card.accent .stat-num { color: var(--cyan-light); }

.stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.stat-card.accent .stat-label { color: rgba(255,255,255,0.6); }

/* ============================================================
SERVICES
============================================================ */
.services {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92,225,230,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services .section-header { color: var(--white); }
.services .section-header h2 { color: var(--white); }
.services .section-label { color: var(--cyan); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--lavender));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(92,225,230,0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(92,225,230,0.1);
    border: 1px solid rgba(92,225,230,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ============================================================
ADD-ONS
============================================================ */
.addons {
    padding: 7rem 0;
    background: var(--off-white);
}

.addons .section-header h2 { color: var(--dark); }

.addons-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.addon-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.addon-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 4px 20px rgba(92,225,230,0.12);
    transform: translateX(4px);
}

.addon-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
    margin-top: 6px;
}

.addon-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.addon-item p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 7rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--cyan-mid);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq-icon::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
CTA BANNER
============================================================ */
.cta-banner {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0f1f22 50%, var(--dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(92,225,230,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
FOOTER
============================================================ */
.footer {
    background: var(--black);
    padding: 3.5rem 0 2rem;
    color: rgba(255,255,255,0.5);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-social a:hover { color: var(--cyan); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer-bottom a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--cyan); }

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid { gap: 4rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .hero {
        align-items: center;
        padding-bottom: 0;
    }
    .hero-eyebrow {
        font-size: 1.3rem;
        letter-spacing: 0.18em;
    }
    
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-stats { grid-template-columns: 1fr 1fr; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .hero-content { max-width: 100%; }
    
    .footer-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .intro-stats { grid-template-columns: 1fr; }
    .hero-cta-group { 
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-group { flex-direction: column; align-items: center; }
    .hero-scroll-hint { display: none; }
}


