/* ========================================
   MILTON BIRD BOARDING — "Playful Friendly" Theme
   Bouncy, rounded, colorful, warm, inviting
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* --- VARIABLES --- */
:root {
    --color-primary: #5B9BD5;
    --color-primary-dark: #3D7FC0;
    --color-primary-light: rgba(91,155,213,0.12);
    --color-secondary: #F7DC6F;
    --color-accent: #F7DC6F;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F0F7FF;
    --color-text: #36454F;
    --color-text-light: #607080;
    --color-heading: #2A3740;
    --color-border: #D4E4F0;
    --font-heading: 'Nunito', 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', sans-serif;
    --radius: 24px;
    --radius-lg: 32px;
    --shadow-sm: 0 2px 8px rgba(91,155,213,0.10);
    --shadow-md: 0 6px 20px rgba(91,155,213,0.14);
    --shadow-lg: 0 12px 40px rgba(91,155,213,0.16);
    --shadow-xl: 0 24px 64px rgba(91,155,213,0.18);
    --transition: 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.3s ease;
    --max-width: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-smooth);
}
a:hover { color: var(--color-primary-dark); }

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; }

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

/* --- BUTTONS (pill-shaped, bouncy) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 0.5rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(91,155,213,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #2D6BA8 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(91,155,213,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    border-radius: 50px;
}
.btn-secondary:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px) scale(1.05);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full { width: 100%; }

/* --- HEADER (floating rounded bar) --- */
.site-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1240px;
    height: var(--header-height);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212,228,240,0.5);
    border-radius: 50px;
    z-index: 1000;
    transition: box-shadow var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(91,155,213,0.12);
}
.site-header.scrolled {
    box-shadow: 0 8px 32px rgba(91,155,213,0.18);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
}
.logo-img {
    height: 40px;
    width: auto;
}
.logo-text {
    white-space: nowrap;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.35rem;
    padding: 0;
}
.main-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    border-radius: 50px;
    transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
    transform: scale(1.05);
}
.main-nav .nav-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff !important;
    margin-left: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(91,155,213,0.3);
}
.main-nav .nav-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #2D6BA8 100%);
    transform: scale(1.06);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-heading);
    border-radius: 3px;
    transition: all var(--transition);
}

/* --- HERO (curved bottom edge) --- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    clip-path: ellipse(120% 100% at 50% 0%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(42,55,64,0.65) 0%, rgba(91,155,213,0.4) 60%, rgba(247,220,111,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 4rem 0 6rem;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    margin-bottom: 1rem;
    line-height: 1.15;
    font-weight: 800;
}
.hero-sub {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero variants */
.hero-centered .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.hero-centered .hero-cta-group { justify-content: center; }
.hero-split { min-height: 65vh; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    border-bottom: 2px dashed var(--color-border);
}
.page-hero h1 {
    margin-bottom: 0.75rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 640px;
}

/* --- TRUST BAR (colorful round badges) --- */
.trust-bar {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    position: relative;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.trust-icon {
    font-size: 1.4rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all var(--transition);
}
.trust-item:hover .trust-icon {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1) rotate(5deg);
}

/* --- SECTIONS (soft gradient transitions) --- */
.section {
    padding: 5rem 0;
    position: relative;
}
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    background: var(--color-primary-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
}
.section-label.centered { display: block; text-align: center; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}
/* Dashed dividers */
.section-divider {
    width: 100px;
    height: 0;
    border: none;
    border-top: 3px dashed var(--color-primary-light);
    margin: 4rem auto;
    background: transparent;
}

.bg-alt {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 15%, var(--color-bg-alt) 85%, var(--color-bg) 100%);
}

/* --- INTRO GRID --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { color: var(--color-text-light); }
.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}
.intro-image img:hover {
    transform: rotate(-1deg) scale(1.02);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1rem;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    transition: all var(--transition);
}
.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition);
}
.link-arrow:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(4px);
}
.link-arrow:hover::after {
    transform: translateX(4px);
}

/* --- SERVICE CARDS (tilt on hover) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    position: relative;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}
.service-card:hover {
    transform: rotate(-1deg) translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}
.service-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, rgba(91,155,213,0.04) 0%, var(--color-bg) 100%);
}
.service-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #F5C842 100%);
    color: var(--color-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Service icon containers: large colored circles */
.service-icon {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(91,155,213,0.2) 100%);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}
.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* --- SERVICE DETAIL (services page) --- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}
.service-detail-image img:hover {
    transform: rotate(1deg) scale(1.02);
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--color-text-light);
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-primary-light);
    border-radius: 50%;
}
.service-features li::after {
    content: '\2713';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.8rem;
}
.service-detail-price {
    margin: 1.5rem 0;
}
.price-amount {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
}
.price-period {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-left: 0.25rem;
}

/* --- INCLUDED GRID --- */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.included-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px dashed transparent;
}
.included-item:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
    transform: translateY(-2px);
}
.included-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(91,155,213,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: all var(--transition);
}
.included-item:hover .included-icon {
    transform: scale(1.1) rotate(5deg);
}
.included-item h4 { margin-bottom: 0.25rem; }
.included-item p { font-size: 0.9rem; color: var(--color-text-light); }

/* --- BIRDS GRID --- */
.birds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    text-align: center;
}
.bird-type {
    padding: 1.5rem 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px dashed transparent;
}
.bird-type:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
    background: #fff;
}
.bird-type-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.bird-type-name { font-weight: 700; font-size: 0.9rem; }

/* --- WHY GRID --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.why-item {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: all var(--transition);
    background: var(--color-bg);
}
.why-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    transform: rotate(-1deg) translateY(-6px);
}
.why-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition);
}
.why-item:hover .why-icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}
.why-item h3 { margin-bottom: 0.5rem; }
.why-item p { color: var(--color-text-light); font-size: 0.95rem; }

/* --- TESTIMONIALS (speech bubbles) --- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem 2rem 2.5rem;
    position: relative;
    transition: all var(--transition);
    margin-bottom: 16px;
}
/* Speech bubble triangle */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--color-border);
}
.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 41px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid var(--color-bg);
    z-index: 1;
}
.testimonial-card:hover {
    transform: translateY(-4px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
    line-height: 1.7;
    font-size: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(91,155,213,0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.1rem;
    border: 2px solid var(--color-primary-light);
}
.testimonial-name { font-weight: 700; color: var(--color-heading); }
.testimonial-detail { font-size: 0.85rem; color: var(--color-text-light); }
.testimonial-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* --- AREAS --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.area-tag {
    padding: 0.85rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--color-heading);
    border: 2px dashed var(--color-border);
    transition: all var(--transition);
}
.area-tag:hover {
    border-color: var(--color-primary);
    color: #fff;
    background: var(--color-primary);
    transform: scale(1.05);
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #2D6BA8 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
}
.cta-banner h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}
.cta-banner .btn-primary {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-heading);
    transform: translateY(-3px) scale(1.05);
}

/* --- ABOUT PAGE --- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.about-story-text h2 { margin-bottom: 1.25rem; }
.about-story-text p { color: var(--color-text-light); }
.about-story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}
.about-story-image img:hover {
    transform: rotate(1deg) scale(1.02);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 2px dashed transparent;
}
.value-card:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
    transform: translateY(-4px) rotate(-0.5deg);
}
.value-icon {
    font-size: 2.2rem;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition);
}
.value-card:hover .value-icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--color-text-light); font-size: 0.95rem; }

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.approach-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.approach-text h2 { margin-bottom: 1rem; }
.approach-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.approach-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--color-text-light);
}
.approach-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.team-member:hover {
    background: var(--color-bg-alt);
    transform: translateY(-4px);
}
.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background: var(--color-bg-alt);
    border: 4px solid var(--color-primary-light);
    transition: all var(--transition);
}
.team-member:hover .team-photo {
    border-color: var(--color-primary);
    transform: scale(1.05);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.9rem; color: var(--color-primary); font-weight: 600; }
.team-bio { font-size: 0.9rem; color: var(--color-text-light); margin-top: 0.5rem; }

/* --- FAQ --- */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition-smooth);
}
.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-heading);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    gap: 1rem;
    transition: color var(--transition-smooth);
}
.faq-question:hover { color: var(--color-primary); }
.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    background: var(--color-primary-light);
    border-radius: 50%;
    transition: all var(--transition);
}
.faq-item.active .faq-toggle {
    background: var(--color-primary);
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    border-radius: 2px;
}
.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: #fff;
}
.faq-toggle::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}
.faq-item.active .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--color-text-light); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-heading);
    font-family: var(--font-heading);
}
.required { color: var(--color-primary); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-status {
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
    font-weight: 600;
}
.form-status.success {
    display: block;
    background: #ecfdf5;
    color: #065f46;
    border: 2px solid #a7f3d0;
}
.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 2px solid #fecaca;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-card {
    padding: 1.75rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 2px dashed var(--color-border);
    transition: all var(--transition);
}
.info-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}
.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}
.info-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* --- ARTICLES --- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.article-card {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--color-bg);
}
.article-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}
.article-card-image {
    height: 200px;
    overflow: hidden;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.article-card:hover .article-card-image img { transform: scale(1.08) rotate(1deg); }
.article-card-body {
    padding: 1.5rem;
}
.article-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.article-card-body h3 a {
    color: var(--color-heading);
}
.article-card-body h3 a:hover {
    color: var(--color-primary);
}
.article-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}
.article-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Article page */
.article-page { padding-top: calc(var(--header-height) + 3rem); }
.article-header {
    max-width: 720px;
    margin: 0 auto 2rem;
}
.back-link {
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    background: var(--color-primary-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
}
.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}
.article-featured-image {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.article-body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-body h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; font-size: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
}
.article-footer {
    max-width: 720px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px dashed var(--color-border);
}

/* --- FOOTER (sky blue, rounded top) --- */
.site-footer {
    background: #5B9BD5;
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 0;
    border-radius: 32px 32px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-logo {
    height: 38px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-nav h4,
.footer-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
}
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}
.footer-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.footer-info p {
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .site-header {
        width: calc(100% - 1rem);
        border-radius: 28px;
    }
    .intro-grid,
    .about-story-grid,
    .approach-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .service-detail.reverse { direction: ltr; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0 0 24px 24px;
    }
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 2px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
        border-radius: 0 0 24px 24px;
    }
    .main-nav.open { display: block; }
    .main-nav ul {
        flex-direction: column;
        padding: 0 1.5rem;
    }
    .main-nav a {
        display: block;
        padding: 0.75rem 0;
    }
    .main-nav .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }

    .hero {
        min-height: 60vh;
        clip-path: ellipse(150% 100% at 50% 0%);
    }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer { border-radius: 24px 24px 0 0; }

    .section { padding: 3.5rem 0; }

    .cta-banner {
        clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0 100%);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 55vh;
        clip-path: ellipse(180% 100% at 50% 0%);
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-cta-group .btn { width: 100%; }
    .trust-items { grid-template-columns: 1fr; }
    .testimonials-slider,
    .articles-grid,
    .testimonials-page-grid { grid-template-columns: 1fr; }
    .cta-banner {
        clip-path: none;
    }
}

/* --- LAYOUT VARIANTS --- */
/* Variant A: Default (above) */

/* Variant B: Rounded & warm */
.layout-B { --radius: 24px; --radius-lg: 32px; }
.layout-B .hero { min-height: 70vh; }
.layout-B .hero-overlay {
    background: linear-gradient(180deg, rgba(42,55,64,0.55) 0%, rgba(91,155,213,0.35) 100%);
}
.layout-B .service-card { border-radius: 32px; }
.layout-B .cta-banner { border-radius: 0; }
.layout-B .site-header { border-bottom: none; box-shadow: var(--shadow-md); }

/* Variant C: Sharp & modern */
.layout-C { --radius: 16px; --radius-lg: 24px; }
.layout-C .hero-overlay {
    background: linear-gradient(90deg, rgba(42,55,64,0.75) 0%, rgba(91,155,213,0.2) 100%);
}
.layout-C .section-label {
    border-left: 3px solid var(--color-primary);
    padding-left: 0.75rem;
    border-radius: 0 50px 50px 0;
}
.layout-C .section-label.centered { border-left: none; padding-left: 1rem; }
.layout-C .btn { border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }
.layout-C .service-card { border-radius: 24px; }

/* Variant D: Elegant serif */
.layout-D .hero h1 { font-weight: 700; letter-spacing: -0.02em; }
.layout-D .section-title { font-weight: 700; }
.layout-D .hero-overlay {
    background: linear-gradient(135deg, rgba(42,55,64,0.55) 0%, rgba(91,155,213,0.25) 100%);
}
.layout-D .testimonial-card { border: none; box-shadow: var(--shadow-md); }
.layout-D .service-card { border: none; box-shadow: var(--shadow-md); }

/* Variant E: Bold blocks */
.layout-E .hero { min-height: 75vh; }
.layout-E .hero-overlay {
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(42,55,64,0.5) 100%);
    opacity: 0.85;
}
.layout-E .trust-bar { background: var(--color-heading); }
.layout-E .cta-banner { background: var(--color-heading); }
.layout-E .section-label {
    background: var(--color-primary-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

/* Mobile header fix — hide long brand name, ensure hamburger visible */
@media (max-width: 768px) {
    .logo-text { display: none; }
    .logo-img { height: 32px; }
    .site-header .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
    .logo-text { display: none; }
}

/* === VISUAL ENHANCEMENTS === */

/* --- 1. Confetti Dots in Hero --- */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: none;
    box-shadow:
        /* Yellow dots */
        12vw 15vh 0 3px rgba(247,220,111,0.7),
        45vw 8vh 0 2px rgba(247,220,111,0.6),
        78vw 22vh 0 3.5px rgba(247,220,111,0.65),
        28vw 55vh 0 2.5px rgba(247,220,111,0.5),
        88vw 42vh 0 2px rgba(247,220,111,0.55),
        60vw 65vh 0 3px rgba(247,220,111,0.6),
        8vw 70vh 0 2px rgba(247,220,111,0.4),
        /* Blue dots */
        22vw 30vh 0 3px rgba(91,155,213,0.6),
        55vw 18vh 0 2.5px rgba(91,155,213,0.5),
        72vw 48vh 0 2px rgba(91,155,213,0.55),
        38vw 72vh 0 3px rgba(91,155,213,0.45),
        92vw 12vh 0 2px rgba(91,155,213,0.6),
        15vw 45vh 0 2.5px rgba(91,155,213,0.5),
        /* White dots */
        32vw 25vh 0 2px rgba(255,255,255,0.7),
        65vw 38vh 0 1.5px rgba(255,255,255,0.6),
        48vw 58vh 0 2px rgba(255,255,255,0.55),
        82vw 68vh 0 1.5px rgba(255,255,255,0.5),
        5vw 35vh 0 2px rgba(255,255,255,0.65),
        95vw 55vh 0 1.5px rgba(255,255,255,0.5);
}

/* --- 2. Service Cards: Tilt + Grow with Spring Bounce --- */
.service-card:hover {
    transform: rotate(-2deg) translateY(-10px) scale(1.04) !important;
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- 3. Wavy SVG Dividers Between Sections --- */
.section {
    position: relative;
}
.section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C150,40 350,0 600,20 C850,40 1050,0 1200,20 L1200,0 L0,0 Z' fill='%23F0F7FF'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}
.section:first-of-type::before,
.hero + .section::before,
.trust-bar + .section::before {
    display: none;
}
.bg-alt::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C200,0 400,35 600,15 C800,0 1000,35 1200,20 L1200,0 L0,0 Z' fill='%23FFFFFF'/%3E%3C/svg%3E") !important;
}
.bg-alt + .section:not(.bg-alt)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,15 C100,35 300,0 500,25 C700,40 900,5 1200,15 L1200,0 L0,0 Z' fill='%23F0F7FF'/%3E%3C/svg%3E");
}
.section {
    padding-top: calc(5rem + 20px);
}

/* --- 4. CTA Button Joyful Bounce on Hover --- */
@keyframes joyBounce {
    0%   { transform: translateY(0) scale(1); }
    30%  { transform: translateY(-12px) scale(1.08); }
    50%  { transform: translateY(-4px) scale(1.04); }
    70%  { transform: translateY(-8px) scale(1.06); }
    100% { transform: translateY(0) scale(1); }
}
.cta-banner .btn-primary:hover {
    animation: joyBounce 0.6s ease forwards !important;
    box-shadow: 0 12px 30px rgba(91,155,213,0.4);
}

/* --- 5. Trust Bar Badges Gentle Wobble --- */
@keyframes gentleWobble {
    0%   { transform: rotate(-2deg); }
    50%  { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}
.trust-icon {
    animation: gentleWobble 3s ease-in-out infinite;
}
.trust-item:nth-child(2) .trust-icon { animation-delay: 0.4s; }
.trust-item:nth-child(3) .trust-icon { animation-delay: 0.8s; }
.trust-item:nth-child(4) .trust-icon { animation-delay: 1.2s; }

/* --- 6. Testimonial Speech Bubble Pointer: More Playful --- */
.testimonial-card::after {
    border-top-width: 18px !important;
    border-left-width: 18px !important;
    border-right-width: 18px !important;
    bottom: -18px !important;
    left: 36px !important;
    filter: drop-shadow(0 2px 3px rgba(91,155,213,0.15));
    border-top-color: var(--color-primary-light) !important;
    transition: all var(--transition);
}
.testimonial-card:hover::after {
    border-top-color: var(--color-primary) !important;
    transform: scale(1.15);
}
.testimonial-card::before {
    bottom: -15px !important;
    left: 38px !important;
    border-left-width: 16px !important;
    border-right-width: 16px !important;
    border-top-width: 16px !important;
}

/* --- 7. Area Tags Pop-in Animation --- */
@keyframes popIn {
    0%   { opacity: 0; transform: scale(0.5) translateY(20px); }
    60%  { opacity: 1; transform: scale(1.08) translateY(-4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.area-tag {
    opacity: 0;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.area-tag:nth-child(1)  { animation-delay: 0.05s; }
.area-tag:nth-child(2)  { animation-delay: 0.10s; }
.area-tag:nth-child(3)  { animation-delay: 0.15s; }
.area-tag:nth-child(4)  { animation-delay: 0.20s; }
.area-tag:nth-child(5)  { animation-delay: 0.25s; }
.area-tag:nth-child(6)  { animation-delay: 0.30s; }
.area-tag:nth-child(7)  { animation-delay: 0.35s; }
.area-tag:nth-child(8)  { animation-delay: 0.40s; }
.area-tag:nth-child(9)  { animation-delay: 0.45s; }
.area-tag:nth-child(10) { animation-delay: 0.50s; }
.area-tag:nth-child(11) { animation-delay: 0.55s; }
.area-tag:nth-child(12) { animation-delay: 0.60s; }

/* --- 8. Hero Subheadline Typewriter Cursor Blink --- */
@keyframes cursorBlink {
    0%, 100% { border-right-color: rgba(255,255,255,0.8); }
    50%      { border-right-color: transparent; }
}
.hero-sub {
    display: inline-block;
    border-right: 3px solid rgba(255,255,255,0.8);
    padding-right: 4px;
    animation: cursorBlink 1s step-end infinite;
}

/* --- 9. Links with Squiggly Wave Underline --- */
.footer-nav a,
.link-arrow,
a:not(.btn):not(.nav-cta):not(.logo):not(.area-tag):not(.main-nav a) {
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    transition: text-decoration-color 0.3s ease, color 0.3s ease;
}
.footer-nav a:hover,
.link-arrow:hover,
a:not(.btn):not(.nav-cta):not(.logo):not(.area-tag):not(.main-nav a):hover {
    text-decoration-color: var(--color-primary);
}

/* --- 10. Yellow Accent Flash / Pulse on Viewport Entry --- */
@keyframes yellowFlash {
    0%   { box-shadow: 0 0 0 0 rgba(247,220,111,0); }
    30%  { box-shadow: 0 0 18px 4px rgba(247,220,111,0.5); }
    60%  { box-shadow: 0 0 8px 2px rgba(247,220,111,0.2); }
    100% { box-shadow: 0 0 0 0 rgba(247,220,111,0); }
}
.service-badge,
.section-label {
    animation: yellowFlash 2s ease-out 0.5s 1;
}
.btn-primary {
    position: relative;
}
.cta-banner .btn-primary::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: transparent;
    animation: yellowFlash 2.5s ease-out 1s 1;
    pointer-events: none;
}

/* Accent color shimmer on featured badge */
@keyframes badgeShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.service-badge {
    background: linear-gradient(
        90deg,
        var(--color-secondary) 0%,
        #FFF5B0 40%,
        var(--color-secondary) 60%,
        #F5C842 100%
    ) !important;
    background-size: 200% 100%;
    animation: badgeShimmer 3s ease-in-out infinite, yellowFlash 2s ease-out 0.5s 1;
}

/* === END VISUAL ENHANCEMENTS === */

/* ======================================================
   VISIBILITY & CONTRAST FIXES — miltonbirdboarding.ca
   ====================================================== */

/* 1. Hero overlay — much darker for white text readability */
.hero-overlay {
    background: linear-gradient(160deg, rgba(20,30,40,0.82) 0%, rgba(42,55,64,0.72) 50%, rgba(61,127,192,0.6) 100%) !important;
}
.layout-B .hero-overlay {
    background: linear-gradient(180deg, rgba(20,30,40,0.8) 0%, rgba(42,55,64,0.7) 100%) !important;
}

/* 2. Hero text — add text shadow for extra readability over any image */
.hero h1 {
    text-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3) !important;
}
.hero-sub {
    text-shadow: 0 1px 8px rgba(0,0,0,0.35) !important;
}

/* 3. Hero buttons — stronger contrast */
.hero .btn-primary {
    background: #fff !important;
    color: var(--color-primary-dark) !important;
    border-color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero .btn-primary:hover {
    background: var(--color-secondary) !important;
    color: var(--color-heading) !important;
    border-color: var(--color-secondary) !important;
}
.hero .btn-secondary {
    border-color: #fff !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.95) !important;
    color: var(--color-primary-dark) !important;
}

/* 4. Trust bar — ensure strong contrast */
.trust-bar {
    background: var(--color-heading) !important;
    color: #fff !important;
}
.trust-item {
    color: #fff !important;
    font-weight: 600;
}
.trust-icon {
    background: rgba(255,255,255,0.15) !important;
    color: var(--color-secondary) !important;
}

/* 5. Section labels — darker for visibility */
.section-label {
    color: var(--color-primary-dark) !important;
    font-weight: 700 !important;
}

/* 6. Text contrast improvements */
.intro-text p,
.about-story-text p,
.approach-text p,
.why-item p,
.service-card p,
.value-card p,
.team-bio,
.article-card-excerpt,
.faq-answer-inner {
    color: #4A5568 !important;
}

/* 7. Heading contrast */
.service-card h3,
.why-item h3,
.value-card h3,
.info-card h3,
.included-item h4 {
    color: var(--color-heading) !important;
}

/* 8. Page hero (inner pages) — stronger background */
.page-hero {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
    color: #fff !important;
}
.page-hero h1 {
    color: #fff !important;
}
.page-hero p {
    color: rgba(255,255,255,0.9) !important;
}

/* 9. CTA banner — ensure readable */
.cta-banner h2 {
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary {
    background: #fff !important;
    color: var(--color-primary-dark) !important;
    border-color: #fff !important;
    font-weight: 700;
}
.cta-banner .btn-primary:hover {
    background: var(--color-secondary) !important;
    color: var(--color-heading) !important;
    border-color: var(--color-secondary) !important;
}

/* 10. Service card "Most Popular" badge — high contrast */
.service-badge {
    background: var(--color-heading) !important;
    color: var(--color-secondary) !important;
    font-weight: 800 !important;
}

/* 11. Nav CTA button — stronger on header */
.main-nav .nav-cta {
    background: var(--color-primary-dark) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

/* 12. Footer — better readability */
.site-footer {
    background: var(--color-heading) !important;
}
.footer-nav a {
    color: rgba(255,255,255,0.8) !important;
}
.footer-nav a:hover {
    color: var(--color-secondary) !important;
}
