/* ==========================================
   PESKY POOCH — Premium Luxury Coastal
   Dog Training & Pet Care, Gold Coast
   ========================================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary — Soft Lavender (logo dog body) */
    --color-primary: #9B6BB0;
    --color-primary-light: #B87FC4;
    --color-primary-dark: #6E3A82;

    /* Accent — Warm Red (logo collar) */
    --color-accent: #E04040;
    --color-accent-light: #F06060;
    --color-accent-dark: #C02020;

    /* Highlight — Bright Aqua/Cyan (logo background) */
    --color-highlight: #6FF5D8;

    /* Light Lavender (replaces sand/cream) */
    --color-sand: #F3F0F8;
    --color-sand-light: #F9F7FC;
    --color-sand-dark: #E8E0F0;

    /* Text */
    --color-text: #1A1628;
    --color-text-secondary: #4A3E5E;
    --color-text-muted: #7A6E98;
    --color-text-light: #FFFFFF;

    /* Surfaces */
    --color-bg: #FFFFFF;
    --color-bg-warm: #F9F7FC;
    --color-bg-ocean: #EDE0F5;
    --color-bg-dark: #3D2055;
    --color-bg-footer: #2E1545;

    /* Utility */
    --color-success: #2ECC71;
    --color-error: #E74C3C;

    /* Gradients */
    --gradient-hero: linear-gradient(160deg, #6FF5D8 0%, #9B6BB0 40%, #3D2055 100%);
    --gradient-warm: linear-gradient(135deg, #E04040 0%, #F06060 100%);
    --gradient-ocean: linear-gradient(135deg, #9B6BB0 0%, #6FF5D8 100%);
    --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(111, 245, 216, 0.3) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(155, 107, 176, 0.35) 0%, transparent 50%),
                     radial-gradient(ellipse at 40% 80%, rgba(61, 32, 85, 0.4) 0%, transparent 50%),
                     radial-gradient(ellipse at 90% 70%, rgba(111, 245, 216, 0.15) 0%, transparent 40%);

    /* Typography — Editorial Luxury */
    --font-display: 'Bricolage Grotesque', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows — Multi-layer for depth */
    --shadow-sm: 0 1px 3px rgba(61, 32, 85, 0.04), 0 4px 12px rgba(61, 32, 85, 0.06);
    --shadow-md: 0 2px 8px rgba(61, 32, 85, 0.04), 0 8px 24px rgba(61, 32, 85, 0.08);
    --shadow-lg: 0 4px 12px rgba(61, 32, 85, 0.04), 0 16px 48px rgba(61, 32, 85, 0.12);
    --shadow-card: 0 2px 8px rgba(155, 107, 176, 0.04), 0 12px 36px rgba(155, 107, 176, 0.1);

    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --header-height: 76px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Accessibility ---------- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-to-content:focus { top: var(--space-sm); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Visibility Baseline (GSAP overrides when ready) ---------- */
[data-reveal],
[data-hero-reveal] {
    opacity: 1;
    transform: none;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-family: var(--font-body);
    font-weight: 600;
}

/* ---------- Section Utilities ---------- */
.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-bg-ocean);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border-left: 3px solid var(--color-highlight);
}

.section-badge--light {
    color: var(--color-accent-light);
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-accent-light);
}

.section-title {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-3xl);
    line-height: 1.8;
}

.text-accent {
    color: var(--color-highlight);
    position: relative;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--color-text-light);
    border-color: rgba(224, 64, 64, 0.3);
    box-shadow: 0 4px 16px rgba(224, 64, 64, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(224, 64, 64, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
    padding: 14px 28px;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 107, 176, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- Animations ---------- */
/* Shimmer keyframes */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}


/* ==========================================
   HEADER — Glassmorphic
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(155, 107, 176, 0.08);
    box-shadow: 0 4px 30px rgba(61, 32, 85, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-dog {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border-radius: 6px;
    object-fit: cover;
}

.logo:hover .logo-dog {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-ocean);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient-warm);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(224, 64, 64, 0.25);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.header-cta:hover::before { left: 100%; }

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(224, 64, 64, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) { opacity: 0; }

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

/* ==========================================
   HERO — Split Layout with Photo
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding-top: var(--header-height);
    overflow: hidden;
}

/* Animated gradient mesh — ambient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
    opacity: 0.6;
}

/* Floating orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 245, 216, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatSlow 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) var(--space-2xl) var(--space-3xl) max(var(--space-lg), calc((100vw - var(--max-width)) / 2 + var(--space-lg)));
}

.hero-photo-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Left-edge gradient — blends photo into purple background */
.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(to right, var(--color-bg-dark) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Bottom gradient — subtle blend into background */
.hero-photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(to bottom, transparent 0%, rgba(61, 32, 85, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    background: rgba(224, 64, 64, 0.12);
    border: 1px solid rgba(224, 64, 64, 0.2);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
}

.hero h1 {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 720px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: var(--space-2xl);
    line-height: 1.9;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

/* Hero Trust Strip — Glassmorphic */
.hero-trust-line {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    letter-spacing: 0.01em;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================
   SERVICES — Premium Cards
   ========================================== */
.services {
    padding: 120px 0;
    background: var(--color-bg-warm);
    position: relative;
}

.services .section-badge,
.services .section-title,
.services .section-subtitle {
    text-align: center;
}

.services .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Primary Services */
.services-primary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    transition: var(--transition);
    border: 1px solid rgba(155, 107, 176, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px) rotate(-0.3deg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(155, 107, 176, 0.15);
}

.service-card--featured {
    padding: var(--space-2xl) var(--space-xl);
    border-left: 3px solid var(--color-highlight);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-bg-ocean) 0%, #DDD0F0 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(111, 245, 216, 0.15);
}

.service-card--featured .service-icon {
    width: 64px;
    height: 64px;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.service-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: var(--color-bg-ocean);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

/* Secondary Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

/* CTA Strip — Glassmorphic on dark */
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-3xl);
    background: var(--color-bg-dark);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(111, 245, 216, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-strip p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-weight: 700;
    position: relative;
}

/* ==========================================
   ABOUT — Dark Luxury
   ========================================== */
.about {
    padding: 120px 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}


/* Decorative orb */
.about::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 245, 216, 0.06) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
    line-height: 1.85;
    font-weight: 400;
}

.about-content p strong {
    color: var(--color-text-light);
    font-weight: 600;
}

.about-credentials {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-credentials li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 0;
}

.about-credentials li svg {
    color: var(--color-highlight);
    flex-shrink: 0;
}

/* Photo Placeholder — Premium Styled */
.about-photo {
    display: flex;
    justify-content: center;
}


/* ==========================================
   BEACH CLASSES
   ========================================== */
.beach-classes {
    padding: 120px 0;
    padding-top: 0;
    background: var(--color-bg-warm);
    position: relative;
}

.wave-divider {
    width: 100%;
    line-height: 0;
    margin-bottom: var(--space-4xl);
}

.wave-divider svg {
    width: 100%;
    height: 100px;
}

.beach-classes .section-badge,
.beach-classes .section-title,
.beach-classes .section-subtitle {
    text-align: center;
}

.beach-classes .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.beach-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 920px;
    margin: 0 auto;
}

.beach-card {
    background: var(--color-bg);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-2xl);
    text-align: center;
    border: 1px solid rgba(155, 107, 176, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.beach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ocean);
    opacity: 0;
    transition: var(--transition);
}

.beach-card:hover::before { opacity: 1; }

.beach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.beach-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--color-bg-ocean) 0%, #DDD0F0 100%);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    color: var(--color-primary);
}

.beach-card-day {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.beach-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.beach-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.beach-card-details {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.beach-card-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.beach-card-details svg {
    color: var(--color-primary);
}

.beach-card .btn {
    margin-top: auto;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 120px 0;
    background: var(--color-bg);
}

.testimonials .section-badge,
.testimonials .section-title,
.testimonials .section-subtitle {
    text-align: center;
}

.testimonials .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    justify-content: center;
}

.testimonial-card {
    background: var(--color-bg-warm);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    flex: 0 1 calc(33.333% - var(--space-lg));
    min-width: 280px;
}

/* Quote mark decoration */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-highlight);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(155, 107, 176, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.875rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* Credibility / As Seen In */
.credibility {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-dark);
    text-align: center;
}

.credibility .section-badge--light {
    margin-bottom: var(--space-xl);
}

.credibility-logos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-4xl);
    flex-wrap: wrap;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.credibility-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.credibility-link {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: var(--transition);
}

.credibility-link:hover {
    color: var(--color-highlight);
}

.credibility-detail {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* About partner callout card */
.about-partner {
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    border: 1px solid rgba(111, 245, 216, 0.2);
    border-radius: 12px;
    background: rgba(111, 245, 216, 0.04);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.about-partner-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-highlight);
    font-weight: 600;
}

.about-partner-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.about-partner-name:hover {
    color: var(--color-highlight);
}

.about-partner-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer partners */
.footer-partners {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-sm);
}

.footer-partners a {
    color: var(--color-highlight);
    text-decoration: none;
}

.footer-partners a:hover {
    text-decoration: underline;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
    padding: 120px 0;
    background: var(--color-bg-warm);
}

.faq .section-badge,
.faq .section-title,
.faq .section-subtitle {
    text-align: center;
}

.faq .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    border-bottom: 1px solid rgba(155, 107, 176, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(155, 107, 176, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) 0;
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.0625rem;
    gap: var(--space-md);
    transition: var(--transition);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--color-text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-highlight);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

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

.faq-answer p {
    padding-bottom: var(--space-lg);
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.85;
    font-weight: 400;
}

/* ==========================================
   CONTACT — Dark Luxury + Glassmorphic Form
   ========================================== */
.contact {
    padding: 120px 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}


.contact::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 64, 64, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    padding: var(--space-sm) 0;
    transition: var(--transition);
}

.contact-detail svg {
    flex-shrink: 0;
    color: var(--color-highlight);
    transition: var(--transition);
}

.contact-detail--phone {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-accent-light);
}

.contact-detail--phone:hover {
    color: var(--color-accent);
}

.contact-detail--phone:hover svg {
    transform: rotate(-10deg);
}

a.contact-detail:hover {
    color: var(--color-text-light);
}

a.contact-detail:hover svg {
    color: var(--color-accent-light);
}

/* Contact Form — Glassmorphic */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(111, 245, 216, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
    position: relative;
}

.form-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
    position: relative;
}

.form-group {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-light);
    transition: var(--transition);
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-group select option {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-highlight);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(111, 245, 216, 0.1);
}

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

.form-error {
    display: none;
    font-size: 0.8125rem;
    color: var(--color-error);
    margin-top: 6px;
}

.form-group.error .form-error { display: block; }

.form-group.error input,
.form-group.error select {
    border-color: var(--color-error);
}

.contact-form .btn {
    margin-top: var(--space-sm);
    position: relative;
}

.form-success {
    display: none;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-success);
}

.form-success.visible { display: flex; }

.form-success p {
    font-size: 0.9375rem;
    position: relative;
}

/* ==========================================
   FOOTER — Deep Ocean
   ========================================== */
.footer {
    background: var(--color-bg-footer);
    padding-top: var(--space-4xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(111, 245, 216, 0.15), transparent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.footer-logo .logo-dog,
.footer-logo .logo-text {
    color: rgba(255, 255, 255, 0.85);
}

.footer-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
    max-width: 300px;
    font-weight: 400;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-social:hover {
    background: rgba(111, 245, 216, 0.15);
    border-color: rgba(111, 245, 216, 0.3);
    color: var(--color-highlight);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.footer-links-group a:hover {
    color: var(--color-highlight);
}

.footer-links-group li:not(:has(a)) {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-lg) 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    letter-spacing: 0.02em;
}

/* ==========================================
   FLOATING PHONE BUTTON — Glowing
   ========================================== */
.floating-phone {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(224, 64, 64, 0.35), 0 0 40px rgba(224, 64, 64, 0.1);
    z-index: 90;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: var(--transition);
}

/* Rotating ring */
.floating-phone::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(224, 64, 64, 0.4);
    border-right-color: rgba(224, 64, 64, 0.1);
    animation: phoneRing 3s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

.floating-phone.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.floating-phone.visible::before {
    opacity: 1;
}

.floating-phone:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(224, 64, 64, 0.45), 0 0 60px rgba(224, 64, 64, 0.15);
}

.floating-phone:hover::before {
    animation: none;
    border-color: rgba(224, 64, 64, 0.3);
}

@keyframes phoneRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================
   RESPONSIVE — TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.2fr 1fr;
    }

    .hero-content {
        padding-left: var(--space-xl);
        padding-right: var(--space-lg);
    }

    .hero-photo-wrapper::before {
        width: 40%;
    }

    .hero-ctas {
        justify-content: flex-start;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-subtitle {
        max-width: none;
    }

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

    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: var(--space-xl);
    }

    .testimonial-card {
        flex: 0 1 calc(50% - var(--space-lg));
    }
}

/* ==========================================
   RESPONSIVE — TABLET PORTRAIT (768px)
   ========================================== */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .hero-photo-wrapper {
        order: -1;
        height: 60vh;
        max-height: 500px;
    }

    .hero-photo-wrapper::before {
        display: none;
    }

    .hero-photo {
        object-position: center 15%;
    }

    .hero-content {
        text-align: center;
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero-trust-line {
        text-align: center;
    }

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

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: var(--transition);
        z-index: 100;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-text);
    }

    .header-cta { display: none; }

    .services-primary { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-strip {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
        padding: var(--space-2xl);
    }

    .cta-strip p { font-size: 1.25rem; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-photo { order: -1; }


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

    .about-credentials li { justify-content: center; }

    .section-badge--light { display: inline-block; }

    .beach-cards { grid-template-columns: 1fr; }

    .testimonial-card { flex: 0 1 100%; }

    .services, .about, .beach-classes,
    .testimonials, .faq, .contact {
        padding: 100px 0;
    }

    .beach-classes { padding-top: 0; }

    .form-group label { font-size: 0.875rem; }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-description { max-width: none; }

    .footer-social { margin: 0 auto; }
}

/* ==========================================
   RESPONSIVE — MOBILE (480px)
   ========================================== */
@media (max-width: 480px) {
    .container { padding: 0 var(--space-md); }

    .services, .about, .beach-classes,
    .testimonials, .faq, .contact {
        padding: 80px 0;
    }

    .beach-classes { padding-top: 0; }

    .hero-photo-wrapper {
        height: 55vh;
        max-height: 420px;
    }

    .hero-photo {
        object-position: center 15%;
    }

    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-ctas {
        flex-direction: column;
        margin-bottom: var(--space-3xl);
    }

    .hero-ctas .btn { justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }

    .credibility-logos { gap: var(--space-xl); }

    .contact-form-wrapper { padding: var(--space-lg); }

    .contact { padding-bottom: 80px; }

    .floating-phone {
        bottom: var(--space-md);
        right: var(--space-md);
    }
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-ocean);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 200;
}


/* ==========================================
   SEASONAL BANNER
   ========================================== */
.seasonal-banner {
    background: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: var(--space-sm) 0;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 99;
}

.seasonal-banner strong {
    font-weight: 700;
}

.seasonal-banner a {
    color: var(--color-highlight);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.seasonal-banner a:hover {
    color: #fff;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
    padding: 120px 0;
    background: var(--color-bg);
    text-align: center;
}

.how-it-works .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    margin: var(--space-3xl) 0;
    position: relative;
}

.step {
    position: relative;
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    border: 2px solid var(--color-sand-dark);
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--color-bg-ocean);
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(155, 107, 176, 0.15);
}

.step h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.step p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Connector lines between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 56px;
    right: -32px;
    width: 64px;
    height: 2px;
    border-top: 2px dashed var(--color-primary-light);
    opacity: 0.3;
}

.how-it-works-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .step:not(:last-child)::after {
        display: none;
    }
}

/* ==========================================
   SUBURB MARQUEE
   ========================================== */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: var(--space-md) 0;
    background: var(--color-sand);
    border-top: 1px solid var(--color-sand-dark);
    border-bottom: 1px solid var(--color-sand-dark);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding-right: 0;
}

@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation-play-state: paused;
    }
}

/* ==========================================
   TRANSFORMATION (Before/After)
   ========================================== */
.transformation {
    padding: 120px 0;
    background: var(--color-bg-warm);
    text-align: center;
}

.transformation .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.transform-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 900px;
    margin: var(--space-3xl) auto 0;
    text-align: left;
}

.transform-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.transform-before {
    border-left: 3px solid var(--color-accent);
    background: linear-gradient(135deg, rgba(224, 64, 64, 0.03), var(--color-bg));
}

.transform-after {
    border-left: 3px solid var(--color-highlight);
    background: linear-gradient(135deg, rgba(111, 245, 216, 0.05), var(--color-bg));
}

.transform-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.transform-before .transform-label {
    color: var(--color-accent);
}

.transform-after .transform-label {
    color: #2AA88A;
}

.transform-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.transform-card li {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    padding-left: var(--space-lg);
    position: relative;
    line-height: 1.6;
}

.transform-before li::before {
    content: '\2715';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.75rem;
    top: 3px;
}

.transform-after li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2AA88A;
    font-weight: 700;
    font-size: 0.875rem;
    top: 2px;
}

.transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-sand);
    color: var(--color-primary);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(155, 107, 176, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(155, 107, 176, 0); }
}

@media (max-width: 768px) {
    .transform-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .transform-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }
}

/* ==========================================
   ABOUT VISUAL UPGRADE
   ========================================== */
.about-visual {
    text-align: center;
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-2xl);
    background: var(--gradient-ocean);
    opacity: 0.12;
    z-index: -1;
}

.about-logo-img {
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px rgba(155, 107, 176, 0.3);
    max-width: 100%;
    height: auto;
}

.about-signature {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-highlight);
    margin-top: var(--space-lg);
}

.about-signature-sub {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}


/* ==========================================
   GALLERY (Meet the Pack)
   ========================================== */
.gallery {
    padding: 120px 0;
    background: var(--color-bg-warm);
    text-align: center;
}

.gallery .section-badge {
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

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

.gallery-photo {
    aspect-ratio: 4 / 5;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    display: block;
    box-shadow: 0 4px 16px rgba(61, 32, 85, 0.1);
    border: 1px solid rgba(155, 107, 176, 0.12);
}

.gallery-photo:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 32px rgba(61, 32, 85, 0.18);
}

.gallery-name {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}


.gallery-cta-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    font-style: italic;
}

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

@media (max-width: 480px) {
    .gallery-photo {
        aspect-ratio: 1;
    }

    .gallery-grid {
        gap: var(--space-md);
    }
}


/* ==========================================
   POOCHES AND PEEPS HEALING
   ========================================== */
.healing {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-bg-ocean) 0%, var(--color-sand) 100%);
    text-align: center;
}

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

.healing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
}

.healing-image-wrapper {
    position: relative;
}

.healing-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: 0 12px 40px rgba(155, 107, 176, 0.25);
}

.healing-content {
    max-width: 480px;
}

.healing-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

@media (max-width: 768px) {
    .healing-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .healing-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .healing-content {
        max-width: 100%;
    }
}

/* ==========================================
   URGENCY BADGE
   ========================================== */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: var(--space-sm);
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    display: inline-block;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 64, 64, 0.4); }
    50% { opacity: 0.7; transform: scale(1.5); box-shadow: 0 0 0 6px rgba(224, 64, 64, 0); }
}

/* ==========================================
   CONTACT MAP
   ========================================== */
.contact-map {
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
    display: block;
    filter: grayscale(0.3) brightness(0.85);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0) brightness(1);
}

/* ==========================================
   MOBILE CTA BAR
   ========================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-warm);
    padding: 14px var(--space-md);
    z-index: 95;
    box-shadow: 0 -4px 20px rgba(224, 64, 64, 0.3);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }
    .floating-phone {
        display: none !important;
    }
    body {
        padding-bottom: 62px;
    }
}

/* ==========================================
   MICRO-INTERACTION UPGRADES
   ========================================== */

/* Button press effect */
.btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}


/* Footer link underline sweep */
.footer-links-group a {
    position: relative;
}

.footer-links-group a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-links-group a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================
   CRO POLISH — Added Styles
   ========================================== */

/* Subtle CTA strip variant */
.cta-strip--subtle {
    background: rgba(61, 32, 85, 0.06);
    border: 1px solid rgba(155, 107, 176, 0.12);
    margin-top: var(--space-3xl);
}

.cta-strip--subtle::before {
    background: none;
}

.cta-strip--subtle p {
    color: var(--color-text);
    font-size: 1.25rem;
}

/* About section CTA button */
.about-cta {
    margin-top: var(--space-xl);
}

/* Seasonal banner button */
.banner-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    text-decoration: none !important;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    margin-left: var(--space-xs);
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Gold star ratings */
.testimonial-stars svg {
    fill: #F5A623;
    color: #F5A623;
}

/* Testimonial card left accent border */
.testimonial-card {
    border-left: 3px solid var(--color-highlight);
}

/* Contact phone hero element */
.contact-phone-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-warm);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-2xl);
    text-decoration: none;
    margin-bottom: var(--space-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-phone-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-phone-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(224, 64, 64, 0.3);
}

.contact-phone-hero svg {
    color: #fff;
}

.contact-phone-number {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.contact-phone-sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* About logo glow ring */
.about-logo-img {
    box-shadow:
        0 8px 32px rgba(155, 107, 176, 0.3),
        0 0 0 4px rgba(111, 245, 216, 0.2),
        0 0 40px rgba(111, 245, 216, 0.1);
}

/* Footer subtle gradient */
.footer {
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, #1a0a2e 100%);
}

@media (max-width: 768px) {
    .contact-phone-hero {
        padding: var(--space-lg) var(--space-xl);
    }

    .contact-phone-number {
        font-size: 1.75rem;
    }

    .cta-strip--subtle {
        margin-top: var(--space-2xl);
    }
}
