@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   GINKEL COACHING — LIGHT LUXURY THEME
   Palette: #005461 · #0C7779 · #249E94 · #3BC1A8
   ========================================================================== */

:root {
    --teal-darkest: #0d5e5c;
    --teal-dark: #148583;
    --teal: #1a9e94;
    --teal-light: #2bbfa8;

    --grad-primary: linear-gradient(135deg, #0d5e5c, #148583 50%, #1a9e94);
    --grad-soft: linear-gradient(135deg, #148583, #1a9e94);
    --grad-text: linear-gradient(135deg, #0d5e5c, #148583);

    /* Light palette — subtle teal tint instead of plain white */
    --bg: #f4fbfa;
    --bg-soft: #e8f6f5;
    --bg-card: #ffffff;
    --bg-muted: #daf0ee;

    --text: #0f2622;
    --text-sub: #4a6a65;
    --text-light: #8aaba6;

    --border: rgba(12, 119, 121, 0.12);
    --shadow-sm: 0 2px 12px rgba(0, 84, 97, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 84, 97, 0.10);
    --shadow-hover: 0 16px 48px rgba(0, 84, 97, 0.14);
    --shadow-glow: 0 8px 30px rgba(36, 158, 148, 0.20);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.2s;
    --t-med: 0.45s;
    --t-slow: 0.65s;

    --header-h: 80px;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: var(--teal-dark);
    transition: color var(--t-fast);
}

a:hover {
    color: var(--teal-darkest);
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text);
}

.text-gold,
.text-accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.divider {
    width: 56px;
    height: 3px;
    background: var(--grad-soft);
    border-radius: 99px;
    margin: 1.25rem auto;
}

.divider-left {
    margin-left: 0;
}

/* --------------------------------------------------------------------------
   BADGES
   -------------------------------------------------------------------------- */
.hero-badge,
.guidance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: var(--bg-muted);
    border: 1px solid rgba(36, 158, 148, 0.25);
    border-radius: var(--radius-full);
    color: var(--teal-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--t-med) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(36, 158, 148, 0.30);
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 8px 30px rgba(36, 158, 148, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid var(--teal-light);
}

.btn-secondary:hover {
    background: var(--bg-muted);
    color: var(--teal-darkest);
    border-color: var(--teal-dark);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   PAGE LOADER
   -------------------------------------------------------------------------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 140px;
    object-fit: contain;
    animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 24px rgba(36, 158, 148, 0.2));
    }

    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 8px 36px rgba(36, 158, 148, 0.4));
    }
}

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 900;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all var(--t-med) var(--ease);
}

.navbar.scrolled {
    height: 68px;
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand img,
.navbar-logo {
    height: 44px;
    transition: height var(--t-med) var(--ease);
}

.navbar.scrolled .navbar-logo {
    height: 36px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-sub);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--t-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--grad-soft);
    border-radius: 99px;
    transition: width var(--t-med) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal-darkest);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-cta .btn {
    padding: 0.65rem 1.6rem;
    font-size: 0.9rem;
}

/* Nav icons — keep them visible but small */
.navbar-nav .nav-link i {
    margin-right: 0.35rem;
    font-size: 0.9rem;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-toggler span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
    transition: all var(--t-fast);
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --------------------------------------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.animate-on-scroll {
    opacity: 1;
    /* visible by default; JS enhances with animation */
    transform: translateY(0);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

/* When JS sets up animations it adds this class first */
.js-anim-ready .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
}

.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-on-scroll.animate-delay-1 {
    transition-delay: 0.10s;
}

.animate-on-scroll.animate-delay-2 {
    transition-delay: 0.20s;
}

.animate-on-scroll.animate-delay-3 {
    transition-delay: 0.30s;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.75) 60%, #fff 100%),
        linear-gradient(135deg, rgba(0, 84, 97, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}

.hero-title {
    color: var(--teal-darkest);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-sub);
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
    color: var(--teal);
    font-size: 1.4rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* --------------------------------------------------------------------------
   ABOUT PREVIEW
   -------------------------------------------------------------------------- */
#about-preview {
    background: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 160px;
    background: linear-gradient(to top, var(--bg-soft), transparent);
    pointer-events: none;
}

.about-content .lead {
    color: var(--text);
    margin: 1.5rem 0;
    font-weight: 400;
    line-height: 1.9;
}

.about-content strong {
    color: var(--teal-dark);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   GUIDANCE / FEATURES
   -------------------------------------------------------------------------- */
#guidance {
    background: var(--bg);
}

.guidance-title {
    margin-bottom: 0.5rem;
}

.guidance-subtitle {
    color: var(--text-sub);
}

.guidance-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.guidance-feature {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--t-med) var(--ease);
    box-shadow: var(--shadow-sm);
}

.guidance-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(36, 158, 148, 0.3);
}

.guidance-feature i {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1.2rem;
    display: block;
}

.guidance-feature h4 {
    color: var(--text);
    margin-bottom: 0.75rem;
}

.guidance-feature p {
    color: var(--text-sub);
    margin: 0;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */
#services {
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card,
.card.service-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-med) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med) var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(36, 158, 148, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon,
.service-card .card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--teal-dark);
    transition: all var(--t-med) var(--ease);
}

.service-card:hover .card-icon {
    background: var(--teal);
    color: #fff;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.925rem;
    color: var(--text-sub);
    margin: 0;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   PACKAGES (homepage preview)
   -------------------------------------------------------------------------- */
#packages {
    background: var(--bg-muted);
}

#packages .section-header h2 {
    color: var(--teal-darkest);
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-dark) 50%, var(--teal) 100%);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-section h2,
.cta-section p {
    color: rgba(255, 255, 255, 0.92);
}

.cta-section .text-gold {
    background: linear-gradient(135deg, #fff, #a8ffe9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section .divider {
    background: rgba(255, 255, 255, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--teal-darkest);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    color: var(--teal-dark);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
    color: #fff;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: #0a1f1d;
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    height: 52px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--t-fast);
    font-size: 0.95rem;
}

.social-link:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--t-fast);
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-links i {
    font-size: 0.7rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
    padding: 0.75rem 1.1rem;
    background: var(--teal);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--t-fast);
}

.newsletter-form button:hover {
    background: var(--teal-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    transition: color var(--t-fast);
}

.footer-legal a:hover {
    color: var(--teal-light);
}

/* --------------------------------------------------------------------------
   PAGE HEADERS (sub-pages)
   -------------------------------------------------------------------------- */
.page-header {
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-dark) 60%, var(--teal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1,
.page-header p {
    color: #fff;
}

.page-header .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   PACKAGE PAGE CARDS
   -------------------------------------------------------------------------- */
.packages-page-section {
    background: var(--bg-soft);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-med) var(--ease);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(36, 158, 148, 0.3);
}

.package-card.featured {
    border-color: var(--border);
    box-shadow: 0 8px 40px rgba(36, 158, 148, 0.18);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--teal-dark);
}

.package-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.package-price {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--teal-darkest);
    margin: 1.5rem 0;
    line-height: 1;
}

.package-price .currency {
    font-size: 1.8rem;
    vertical-align: super;
    color: var(--teal);
}

.package-price .period {
    font-size: 1rem;
    color: var(--text-sub);
    font-weight: 400;
}

.package-features {
    margin: 1.5rem 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-sub);
}

.package-features i {
    color: var(--teal);
    flex-shrink: 0;
}

.package-card .btn {
    margin-top: auto;
    width: 100%;
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOAT
   -------------------------------------------------------------------------- */
/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: all var(--t-fast);
    animation: waPulse 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1eb858;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Terms Modal */
.whatsapp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    box-shadow: var(--shadow-hover);
    transform: scale(0.95);
    transition: transform 0.3s var(--ease);
}

.whatsapp-modal-overlay.active .whatsapp-modal {
    transform: scale(1);
}

.whatsapp-modal h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.whatsapp-modal h3 i {
    color: #25D366;
    font-size: 1.5rem;
}

.whatsapp-modal p {
    color: var(--text-sub);
    margin-bottom: 1.5rem;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-sub);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-checkbox-label input {
    margin-top: 3px;
    accent-color: var(--teal);
}

.form-checkbox-label a {
    color: var(--teal-dark);
}

.whatsapp-modal-actions {
    display: flex;
    gap: 1rem;
}

.whatsapp-modal-cancel {
    flex: 1;
    padding: 0.8rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-sub);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all var(--t-fast);
}

.whatsapp-modal-cancel:hover {
    background: var(--bg-muted);
}

.whatsapp-modal-proceed {
    flex: 1;
    padding: 0.8rem;
    background: #e8e8e8;
    border-radius: var(--radius-full);
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all var(--t-fast);
    text-decoration: none;
}

.whatsapp-modal-proceed.active {
    background: #25D366;
    color: #fff;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* --------------------------------------------------------------------------
   UTILITY
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.no-underline {
    text-decoration: none;
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.section-darker {
    background: var(--bg-soft);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }

    /* Mobile nav */
    .navbar-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0 2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform var(--t-med) var(--ease);
        box-shadow: var(--shadow-md);
    }

    .navbar-nav.active {
        transform: translateY(0);
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-cta {
        display: none;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .guidance-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
    }

    .package-price {
        font-size: 3rem;
    }
}

/* --------------------------------------------------------------------------
   PAGE HEADER (sub-pages with background image)
   -------------------------------------------------------------------------- */
.page-header {
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-dark) 60%, var(--teal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.4) saturate(1.2);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 84, 97, 0.75) 0%,
            rgba(12, 119, 121, 0.6) 60%,
            rgba(36, 158, 148, 0.5) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #fff;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
}

.page-header .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
}

.page-header .text-gold {
    background: linear-gradient(135deg, #fff, #a8ffe9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}

/* Section dark variant */
.section-dark {
    background: var(--bg-soft);
}

/* --------------------------------------------------------------------------
   PACKAGES PAGE GRID
   -------------------------------------------------------------------------- */
.packages-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Package Category Headers */
.package-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.package-category-line {
    flex: 1;
    height: 2px;
    border-radius: 99px;
    background: var(--grad-soft);
    opacity: 0.4;
}

.package-category-line--taupe-reverse {
    background: linear-gradient(to left, var(--teal-light), var(--teal));
    opacity: 0.4;
}

.package-category-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.package-category-title i {
    color: var(--teal);
}

/* Voeding card */
.voeding-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-sub);
    font-size: 0.9rem;
    margin: 0;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

/* Contact form card */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

/* --------------------------------------------------------------------------
   FORM ELEMENTS
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    appearance: auto;
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(36, 158, 148, 0.12);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-privacy-note i {
    color: var(--teal);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .packages-page-grid {
        grid-template-columns: 1fr;
    }

    .package-category-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .package-category-line {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   PACKAGE CATEGORY LINE VARIANTS
   -------------------------------------------------------------------------- */
.package-category-line--taupe {
    background: linear-gradient(to right, var(--teal-light), var(--teal));
    opacity: 0.4;
}

.package-category-line--taupe-reverse {
    background: linear-gradient(to left, var(--teal-light), var(--teal));
    opacity: 0.4;
}

.package-category-line--steel {
    background: linear-gradient(to right, var(--teal), var(--teal-dark));
    opacity: 0.35;
}

.package-category-line--steel-reverse {
    background: linear-gradient(to left, var(--teal), var(--teal-dark));
    opacity: 0.35;
}

/* --------------------------------------------------------------------------
   PACKAGE CATEGORY TITLE VARIANTS
   -------------------------------------------------------------------------- */
.package-category-title--taupe {
    color: var(--teal-dark);
}

.package-category-title--taupe i {
    color: var(--teal-light);
}

.package-category-title--steel {
    color: var(--teal-darkest);
}

.package-category-title--steel i {
    color: var(--teal);
}

/* --------------------------------------------------------------------------
   BTN STEEL (Voedingsbegeleiding CTA)
   -------------------------------------------------------------------------- */
.btn-steel {
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid rgba(36, 158, 148, 0.4);
}

.btn-steel:hover {
    background: var(--bg-muted);
    color: var(--teal-darkest);
    border-color: var(--teal);
}

/* --------------------------------------------------------------------------
   LOCATIONS SECTION (packages.php)
   -------------------------------------------------------------------------- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-med) var(--ease);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(36, 158, 148, 0.3);
}

.location-card i {
    font-size: 1.75rem;
    color: var(--teal);
}

.location-card h4 {
    color: var(--text);
    margin: 0;
}

.location-note {
    background: var(--bg-muted);
    border: 1px solid rgba(36, 158, 148, 0.18);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.location-note p {
    color: var(--text-sub);
    margin: 0;
    font-size: 0.95rem;
}

.location-note a {
    color: var(--teal-dark);
    font-weight: 600;
}

.location-note a:hover {
    color: var(--teal-darkest);
}

/* --------------------------------------------------------------------------
   LOADER LOGO CONTAINER (gold light beam effect)
   -------------------------------------------------------------------------- */
.loader-logo-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gold-light-beam {
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(36, 158, 148, 0.15) 60deg, transparent 120deg);
    animation: beamRotate 2s linear infinite;
    border-radius: 50%;
}

@keyframes beamRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}