/* =============================================
   ARONA GOLF CLUB — Campo-style Redesign
   Cream backgrounds, teal accents, elegant typography
   ============================================= */

/* ===== CUSTOM CURSOR (desktop only) ===== */
@media (pointer: fine) and (any-hover: hover) {
    *, *::before, *::after {
        cursor: none !important;
    }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid #f5c518;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
    /* no blend mode — colors controlled by JS based on background */
    opacity: 0;
}

.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #f5c518;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease, opacity 0.15s ease;
    opacity: 0;
}

.custom-cursor-dot.visible {
    opacity: 1;
}

.custom-cursor.hover {
    width: 52px;
    height: 52px;
    border-color: #f5c518;
    background: rgba(245, 197, 24, 0.1);
}

.custom-cursor.hover + .custom-cursor-dot,
.custom-cursor-dot.hover {
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-cursor.clicking {
    width: 24px;
    height: 24px;
    border-color: #f5c518;
    background: rgba(245, 197, 24, 0.18);
}

/* Cursor on light backgrounds (cream, white, beige) */
.custom-cursor.on-light {
    border-color: var(--teal) !important;
}
.custom-cursor.on-light.hover {
    border-color: var(--accent) !important;
    background: rgba(60, 179, 113, 0.08) !important;
}
.custom-cursor.on-light.clicking {
    border-color: var(--accent) !important;
    background: rgba(60, 179, 113, 0.15) !important;
}
.custom-cursor-dot.on-light {
    background: var(--accent) !important;
}

:root {
    --accent: #3cb371;
    --accent-dark: #2e8b57;
    --accent-light: #5fcf90;
    --teal: #163832;
    --teal-light: #1e4d44;
    --cream: #eae6db;
    --cream-light: #f0ede4;
    --dark: #163832;
    --text: #3a3a3a;
    --text-light: #777;
    --white: #ffffff;
    --whatsapp: #25d366;

    --font-heading: 'Syne', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --container: 1240px;
    --section-py: 110px;
    --radius: 14px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.3s var(--ease);
    --t-medium: 0.6s var(--ease);
    --t-slow: 1s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
}

h1 { font-size: 3rem; font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: 2.2rem; font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; }

em { font-style: italic; }
p { margin-bottom: 1rem; }

::selection { background: var(--accent); color: var(--white); }

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

/* ========== TOPOGRAPHIC BACKGROUND PATTERN ========== */
.section--cream {
    background-color: var(--cream);
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d6d2c7' stroke-width='0.8' opacity='0.4'%3E%3Cellipse cx='300' cy='300' rx='280' ry='200'/%3E%3Cellipse cx='300' cy='300' rx='240' ry='170'/%3E%3Cellipse cx='300' cy='300' rx='200' ry='140'/%3E%3Cellipse cx='300' cy='300' rx='160' ry='110'/%3E%3Cellipse cx='300' cy='300' rx='120' ry='80'/%3E%3Cellipse cx='300' cy='300' rx='80' ry='50'/%3E%3Cellipse cx='300' cy='300' rx='40' ry='25'/%3E%3Cellipse cx='150' cy='500' rx='140' ry='100'/%3E%3Cellipse cx='150' cy='500' rx='100' ry='70'/%3E%3Cellipse cx='150' cy='500' rx='60' ry='40'/%3E%3Cellipse cx='500' cy='100' rx='120' ry='90'/%3E%3Cellipse cx='500' cy='100' rx='80' ry='60'/%3E%3Cellipse cx='500' cy='100' rx='40' ry='30'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 600px 600px;
}

.section--teal {
    background: var(--teal);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--t-fast);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 179, 113, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ========== GREEN BAR (recurring element) ========== */
.green-bar {
    width: 5px;
    background: var(--accent);
    border-radius: 3px;
    flex-shrink: 0;
    min-height: 40px;
    align-self: stretch;
}

.green-bar-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.label-green {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    transition: all var(--t-fast);
}
.read-more-btn:hover { color: var(--accent); }
.read-more-btn.light { color: var(--white); }
.read-more-btn.light:hover { color: var(--accent-light); }

/* ========== PRELOADER ========== */
#preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; position: relative; }

.preloader-golfer {
    width: 120px; height: 120px;
    margin: 0 auto 1rem;
    position: relative;
}
.preloader-golfer svg { width: 100%; height: 100%; }

/* Golfer body */
.golfer-body { fill: var(--dark); }
.golfer-club { stroke: var(--dark); stroke-width: 2.5; stroke-linecap: round; fill: none; }
.golfer-ball { fill: #fff; stroke: var(--dark); stroke-width: 1; }

/* Golf swing animation - realistic: address → backswing → downswing → impact → follow-through */
.golfer-club-group {
    transform-origin: 63px 85px; /* Hands grip point */
    animation: golfSwing 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.golfer-ball-group {
    opacity: 1;
    animation: golfBallFly 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Subtle body rotation during swing */
.golfer-body-group {
    transform-origin: 68px 100px; /* Hips */
    animation: golfBodyTurn 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes golfSwing {
    /* Address position - club pointing down at ball */
    0%, 8% { transform: rotate(45deg); }
    /* Backswing - club goes back and up behind shoulders */
    30% { transform: rotate(-85deg); }
    /* Pause at top */
    35% { transform: rotate(-90deg); }
    /* Downswing - fast acceleration to impact */
    48% { transform: rotate(0deg); }
    /* Impact! - club hits ball at address angle */
    52% { transform: rotate(50deg); }
    /* Follow-through - club wraps around behind shoulders */
    68% { transform: rotate(120deg); }
    /* Hold finish position */
    80% { transform: rotate(115deg); }
    /* Return smoothly to address */
    100% { transform: rotate(45deg); }
}

@keyframes golfBallFly {
    /* Ball sits at feet during backswing */
    0%, 50% { opacity: 1; transform: translate(0, 0) scale(1); }
    /* Impact - ball launches */
    53% { opacity: 1; transform: translate(5px, -5px) scale(1); }
    /* Ball flying away */
    70% { opacity: 0.8; transform: translate(40px, -50px) scale(0.5); }
    80% { opacity: 0; transform: translate(55px, -65px) scale(0.2); }
    /* Ball reappears at address for next swing */
    95%, 100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes golfBodyTurn {
    0%, 8% { transform: rotate(0deg); }
    /* Slight body turn on backswing */
    32% { transform: rotate(-4deg) translateX(-1px); }
    /* Return and rotate through impact */
    55% { transform: rotate(3deg) translateX(1px); }
    /* Hold finish */
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

/* Hit effect when page loads - final powerful swing */
#preloader.hit .golfer-club-group {
    animation: golfSwingFinal 0.5s cubic-bezier(0.2, 0, 0, 1) forwards;
}
#preloader.hit .golfer-ball-group {
    animation: golfBallFlyAway 0.7s cubic-bezier(0.2, 0, 0, 1) forwards;
}
#preloader.hit .golfer-body-group {
    animation: golfBodyFinal 0.5s ease-out forwards;
}
@keyframes golfSwingFinal {
    0% { transform: rotate(-90deg); }
    50% { transform: rotate(50deg); }
    100% { transform: rotate(120deg); }
}
@keyframes golfBallFlyAway {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    30% { opacity: 1; transform: translate(15px, -15px) scale(0.9); }
    100% { opacity: 0; transform: translate(100px, -100px) scale(0.05); }
}
@keyframes golfBodyFinal {
    0% { transform: rotate(-3deg); }
    100% { transform: rotate(3deg); }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ========== HEADER ========== */
.header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
}

/* Nav Logo inside dark bar */
.nav-logo {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}
.nav-logo img {
    height: 72px;
}

/* Main Nav */
.main-nav {
    background: rgba(22, 56, 50, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.main-nav.fixed {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.main-nav .container {
    max-width: 100%;
    padding: 0 3rem;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 0 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
    line-height: 72px;
    transition: color var(--t-fast);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
}
.nav-social a {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-social a:hover { color: var(--white); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: all var(--t-fast);
    transform-origin: center;
}
.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 ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
}

.hero-slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    transform: scale(1.02);
    animation: heroKen 18s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes heroKen {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        180deg,
        rgba(22,56,50,0.25) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(22,56,50,0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text { padding-top: 80px; }
.hero-letter {
    display: inline-block;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-heading-wrapper .green-bar { transition: opacity 0.5s ease; }

.hero-heading-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.hero-heading-wrapper .green-bar {
    width: 6px;
    margin-right: 25px;
    min-height: auto;
}

.hero h1 {
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 60px rgba(0,0,0,0.4), 0 0 100px rgba(0,0,0,0.3);
}

.hero h1 em {
    font-style: italic;
}

/* Booking Bar */
.booking-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 3;
    background: #163832;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.booking-bar-content {
    display: flex;
    align-items: center;
    padding: 22px 0;
    gap: 2rem;
}

.booking-bar-text {
    flex-shrink: 0;
    min-width: 200px;
}
.booking-bar-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}
.booking-bar-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.booking-bar-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.booking-field {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border-radius: 6px;
    padding: 0 16px;
    height: 48px;
    flex: 1;
    min-width: 0;
}

.booking-field i {
    color: var(--teal);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.booking-field input,
.booking-field select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    width: 100%;
    height: 100%;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.booking-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 16px;
}

.booking-bar .btn-accent {
    height: 48px;
    border-radius: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}
.dot {
    width: 10px; height: 10px;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--t-fast);
    padding: 0;
}
.dot.active {
    background: var(--white);
    border-color: var(--white);
}
.dot:hover { border-color: var(--white); }

/* ========== SERVICES (3 columns, Campo style) ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    transition: all var(--t-medium);
}
.service-card:hover { transform: translateY(-6px); }

.service-img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
}
.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ========== ABOUT (golfer image + quote, Campo style) ========== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-image-col {
    position: relative;
}

/* Stats Card (overlapping image, like Campo winner card) */
.stats-card {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 2;
}

.stats-card-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
}
.stats-card-avatar img { width: 36px; height: auto; }

.stats-card-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
}
.stats-card-info strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    display: block;
}
.stats-card-sub {
    font-size: 0.75rem;
    color: var(--text-light);
}

.stats-card-number {
    text-align: center;
    border-left: 1px solid #eee;
    padding-left: 14px;
    margin-left: 6px;
}
.stats-card-number span {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    display: block;
}
.stats-card-number small {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Quote side */
.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 1.5rem;
}

.quote-bar-wrapper {
    display: flex;
    gap: 18px;
    margin-bottom: 2rem;
}

.quote-bar-wrapper .green-bar {
    min-height: auto;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1.5;
    margin: 0;
}

.quote-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
}
.quote-author span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ========== ACADEMY (image + text, Campo style) ========== */
.academy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.academy-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.academy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}
.academy-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
    font-size: 2.5rem; font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 60px rgba(0,0,0,0.4), 0 0 100px rgba(0,0,0,0.3);
}

.academy-desc {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
}

.academy-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ========== TESTIMONIAL CAROUSEL (full-width, Campo style) ========== */
.testimonial-carousel {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.testimonial-slide.active { opacity: 1; }

.testimonial-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(22,56,50,0.55);
}

.testimonial-content {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.testimonial-flex {
    flex-direction: row;
    gap: 3rem;
    text-align: left;
    padding: 0 6rem;
}
.testimonial-logo {
    height: 120px;
    flex-shrink: 0;
    opacity: 0.95;
}
.testimonial-text {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .testimonial-flex {
        flex-direction: column;
        text-align: center;
        padding: 0 2rem;
        gap: 1.5rem;
    }
    .testimonial-logo {
        height: 80px;
    }
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.c-dot {
    width: 10px; height: 10px;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--t-fast);
    padding: 0;
}
.c-dot.active {
    background: var(--white);
    border-color: var(--white);
}

/* ========== EVENTS (split layout, Campo style) ========== */
.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.events-left {
    padding: 60px 50px;
    background: var(--white);
    display: flex;
    align-items: center;
}

.events-cards {
    width: 100%;
}

.event-mini {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.event-mini-img {
    border-radius: var(--radius);
    overflow: hidden;
    width: 50%;
    height: 160px;
}
.event-mini-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.event-dates {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.event-date-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.event-date-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.events-desc {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.events-right {
    position: relative;
    overflow: hidden;
}
.events-right img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.events-title {
    position: absolute;
    bottom: 60px;
    right: 60px;
    color: var(--white);
    font-size: 3rem; font-size: clamp(3rem, 6vw, 5rem);
    text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 60px rgba(0,0,0,0.4), 0 0 100px rgba(0,0,0,0.3);
}

/* ========== SKILLS (heading + icons, Campo style) ========== */
.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.skills-heading h2 {
    font-size: 1.8rem; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.3;
}

.skills-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.skill-icon-item {
    text-align: center;
}

.skill-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon i {
    font-size: 2.8rem;
    color: var(--teal);
}

.skill-icon-item strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

/* ========== ACTION CARDS (staggered, Campo style) ========== */
.action-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.action-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
}
.action-card.offset-down {
    margin-top: 40px;
}

.action-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.action-card:hover img { transform: scale(1.08); }

.action-card-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(60,179,113,0.15) 0%, rgba(22,56,50,0.65) 100%);
    transition: all var(--t-fast);
}
.action-card:hover .action-card-overlay {
    background: linear-gradient(180deg, rgba(60,179,113,0.2) 0%, rgba(22,56,50,0.75) 100%);
}

.action-card-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.action-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

/* ========== COURSE (dark teal, Campo style) ========== */
.course-section {
    padding: var(--section-py) 0;
}

.course-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.course-heading {
    color: var(--white) !important;
    font-size: 2.5rem; font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.8rem;
}

.course-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 600;
}

.course-features {
    margin-top: 2.5rem;
}

.course-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.course-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0;
    transform: translateY(15px);
    filter: blur(4px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.course-feature.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.course-feature.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(6px);
}

.cf-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    width: 20px;
}

.cf-bar {
    width: 3px;
    height: 100%;
    min-height: 40px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.course-feature strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.course-feature p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.course-map-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ========== EXPLORE COURSE (hole cards, Campo style) ========== */
.explore-section {
    padding-top: 3rem;
    padding-bottom: var(--section-py);
}

.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.explore-title {
    color: var(--white) !important;
    font-size: 1.8rem; font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.explore-nav {
    display: flex;
    gap: 0.8rem;
}

.explore-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
    font-size: 0.85rem;
}
.explore-arrow:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.holes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow: hidden;
}

.hole-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--t-medium);
}
.hole-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.hole-card-img {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.hole-card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--t-slow);
}
.hole-card:hover .hole-card-img img { transform: scale(1.08); }

.hole-par {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding-top: 1.2rem;
}

.hole-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white) !important;
    text-align: center;
    margin: 0.3rem 0 1rem;
}

.hole-readmore {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    padding: 12px;
    border: 1px solid var(--accent);
    margin: 0 1rem 1.2rem;
    border-radius: 4px;
    transition: all var(--t-fast);
}
.hole-readmore:hover {
    background: var(--accent);
    color: var(--white);
}

/* ========== SCHEDULE / TARIFFE (accordion, Campo style) ========== */
.schedule-title {
    text-align: center;
    font-size: 2.5rem; font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #c8c4b8;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark);
    text-align: center;
    transition: all var(--t-fast);
}
.accordion-header:hover { color: var(--accent); }

.accordion-header i {
    font-size: 0.9rem;
    color: var(--dark);
    transition: all var(--t-fast);
}

.accordion-item {
    border-radius: 8px;
    margin-bottom: 0.3rem;
    overflow: hidden;
    background: transparent;
    transition: background 0.5s ease-in-out;
}

.accordion-item.active {
    background: var(--accent);
}

.accordion-item.active .accordion-header {
    color: var(--dark);
}
.accordion-item.active .accordion-header,
.accordion-item.active .accordion-header i { color: var(--dark); }

.accordion-header i {
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    transition: max-height 0.45s ease-in-out,
                opacity 0.4s ease-in-out,
                padding 0.4s ease-in-out;
}
.accordion-item.active .accordion-body {
    max-height: 600px;
    opacity: 1;
    padding: 0.5rem 1.5rem 1.5rem;
    transition: max-height 0.45s ease-in-out,
                opacity 0.4s ease-in-out,
                padding 0.4s ease-in-out;
}

.schedule-entry {
    padding: 0.5rem 0;
}

.schedule-location {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 0.3rem;
}
.schedule-location i { margin-right: 0.3rem; }

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(22,56,50,0.15);
    font-size: 0.9rem;
}
.schedule-row:last-child { border-bottom: none; }

.schedule-time {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--teal);
}

.schedule-activity {
    font-weight: 600;
    color: var(--teal);
}

.schedule-note {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--teal);
    margin-top: 0.5rem;
}

/* ========== VIDEO (rounded container, no bg image) ========== */
.video-section {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--teal);
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
}

/* Poster overlay (before play) */
.video-poster {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.5s ease;
}
.video-poster.hidden { opacity: 0; pointer-events: none; }

.video-poster-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(22,56,50,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.play-btn {
    width: 80px; height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative;
    border: none;
}
.play-btn::after {
    content: '';
    position: absolute;
    width: 100px; height: 100px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: playPulse 2s ease infinite;
}
@keyframes playPulse {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
}
.play-btn i { font-size: 1.3rem; color: var(--white); margin-left: 4px; }
.play-btn:hover { background: var(--accent-dark); transform: scale(1.05); }

.video-poster-overlay h3 { color: var(--white); font-size: 1.5rem; margin: 0 0 0.3rem; }
.video-poster-overlay p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

.contact-page-title {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 3rem;
}

/* ========== NEWS / NOVITA ========== */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
    width: 75%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}
.news-card.news-card-right {
    align-self: flex-end;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
/* Fade animation */
.news-card-animate {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    transform: translateX(-30px);
}
.news-card-animate.news-card-right {
    transform: translateX(30px);
}
.news-card-animate.news-card-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
.news-card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-card:hover .news-card-img img {
    transform: scale(1.05);
}
.news-card-body {
    padding: 2.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}
.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.news-card-body p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    flex: 1;
}
@media (max-width: 768px) {
    .news-card, .news-card.news-card-right { align-self: stretch; width: 100%; }
    .news-card-animate { transform: translateY(20px); }
    .news-card-animate.news-card-right { transform: translateY(20px); }
    .news-card { min-height: auto; }
}

/* ========== CONTACT (map left, info right, Campo style) ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-map {
    min-height: 500px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-info-panel {
    padding: 60px 50px;
}

.contact-info-panel h2 {
    margin-bottom: 0.5rem;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-cta-row .btn-contact {
    flex: 1;
}

.contact-phone span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}
.contact-phone strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
}
.contact-phone a { color: var(--dark); }
.contact-phone a:hover { color: var(--accent); }

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.cd-icon {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 0.8rem;
}

.contact-detail strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}
.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--accent); }

/* Contact Page Grid */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.contact-left {
    display: flex;
    flex-direction: column;
}
.contact-right {
    display: flex;
    flex-direction: column;
}
.contact-right .contact-form-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-right .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-right .contact-form textarea {
    flex: 1;
}
.contact-details-horizontal {
    display: flex !important;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-details-horizontal .contact-detail {
    flex: 1;
}
.contact-map-inline {
    margin-top: 1.5rem;
    flex: 1;
    min-height: 200px;
}
.contact-map-inline iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}
.contact-form-wrapper h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cream-light);
    border: 1px solid #ddd9ce;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    transition: border-color var(--t-fast);
    resize: vertical;
    -webkit-tap-highlight-color: transparent;
}
.contact-form textarea { margin-bottom: 1rem; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.form-footer-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-footer .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.checkbox-label {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; color: var(--text-light);
    cursor: pointer;
    line-height: 1.3;
    text-align: right;
    width: 100%;
}
.checkbox-label span,
.checkbox-label {
    flex: 1;
    text-align: right;
}
.checkbox-label input { accent-color: var(--accent); flex-shrink: 0; width: 16px; height: 16px; }

/* ========== FOOTER (dark teal, Campo style) ========== */
.footer {
    background: var(--teal);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}
.footer-links-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--t-fast);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-col p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}
.footer-col p a {
    color: rgba(255,255,255,0.5);
}
.footer-col p a:hover { color: var(--accent); }

/* Newsletter */
.newsletter-form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-fast);
}
.newsletter-form button:hover { background: var(--accent); }

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all var(--t-fast);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom a {
    color: rgba(255,255,255,0.35);
    margin-left: 1.5rem;
}
.footer-bottom a:hover { color: var(--accent); }

/* ========== WHATSAPP FAB ========== */
.whatsapp-fab {
    position: fixed; bottom: 25px; right: 25px;
    width: 56px; height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--t-fast);
}
.whatsapp-fab i { font-size: 1.5rem; color: var(--white); }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; bottom: 90px; right: 25px;
    width: 40px; height: 40px;
    background: var(--teal);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 998;
    opacity: 0; visibility: hidden;
    transform: translateY(15px);
    transition: all var(--t-fast);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ========== INNER PAGES ========== */
.page-hero {
    background: var(--teal);
    padding: 140px 0 60px;
    text-align: center;
}
.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem; font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
}
.page-hero .breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumb a:hover { color: var(--accent); }

.page-content {
    padding: var(--section-py) 0;
}

/* Pages without hero — add top spacing for fixed nav */
.no-hero-spacer {
    padding-top: 140px;
}

/* Sponsor badge on hole cards */
.hole-sponsor {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}
.hole-sponsor a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.hole-sponsor a:hover {
    color: var(--white);
}

/* ========== HOLE DETAIL PAGES ========== */
.hole-hero {
    position: relative;
    height: 40vh;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hole-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hole-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,56,50,0.85) 0%, rgba(22,56,50,0.2) 60%, transparent 100%);
}
.hole-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    width: 100%;
}
.hole-hero-content h1 {
    color: var(--white);
    font-size: 2.5rem; font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.3rem;
}
.hole-hero-content .hole-hero-par {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
}
.hole-hero-content .hole-hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hole-detail-section {
    padding: var(--section-py) 0;
    padding-bottom: 8rem;
}
.hole-detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 3rem;
    align-items: stretch;
}
.hole-detail-desc {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
}
.hole-detail-video {
    grid-column: 1;
    grid-row: 2;
}
.hole-detail-sidebar {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hole-detail-desc p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
}

.hole-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    flex: 1;
    text-align: center;
}
.hole-info-card h4 {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: center;
}
.hole-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream);
    font-size: 0.95rem;
    text-align: center;
}
.hole-info-item:last-child { border-bottom: none; }
.hole-info-item strong {
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    white-space: nowrap;
}
.hole-info-item span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

.hole-sponsor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
}
.hole-sponsor-card .btn-sm { padding: 8px 12px; font-size: 0.78rem; }
.hole-sponsor-card .sponsor-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.hole-sponsor-card .sponsor-logo {
    max-width: 100%;
    width: 220px;
    height: auto;
    object-fit: contain;
}
.hole-sponsor-card .sponsor-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.hole-video-section {
    padding: 0 0 var(--section-py);
}
.hole-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.hole-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.hole-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: rgba(22, 56, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.hole-nav.hidden-by-footer {
    transform: translateY(100%);
}
.hole-nav a, .hole-nav span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    transition: color var(--t-fast);
    flex: 1;
}
.hole-nav a:hover {
    color: var(--accent);
}
.hole-nav a:first-child, .hole-nav span:first-child {
    justify-content: flex-start;
}
.hole-nav a:last-child {
    justify-content: flex-end;
}
.hole-nav .all-holes {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.7);
    justify-content: center;
    flex: 0 0 auto;
}
.hole-nav .all-holes:hover { color: #fff; }
/* Add padding so content isn't hidden behind fixed bar */
body:has(.hole-nav) .footer { padding-bottom: 70px; }

@media (max-width: 768px) {
    .hole-hero { height: 28vh; min-height: 180px; }
    .hole-hero-content { padding: 1.5rem 0; }
    .hole-hero-content h1 { font-size: 1.8rem; }
    .hole-hero-content .hole-hero-par { font-size: 0.7rem; }
    .hole-detail-section { padding-top: 2rem; padding-bottom: 6rem; }
    .hole-detail-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.2rem;
    }
    .hole-detail-video {
        order: 1;
        margin: 0;
        grid-column: 1;
        grid-row: auto;
    }
    .hole-detail-desc {
        order: 2;
        grid-column: 1;
        grid-row: auto;
    }
    .hole-detail-desc p { font-size: 0.85rem; line-height: 1.7; }
    .hole-detail-sidebar {
        order: 3;
        grid-column: 1;
        grid-row: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        align-self: auto;
    }
    .hole-info-card { padding: 1rem; }
    .hole-sponsor-card { padding: 1rem; }
    .hole-sponsor-card .sponsor-logo { max-height: 60px; }
    .hole-sponsor-card .sponsor-label { font-size: 0.6rem; }
}

/* ========== STATS GRID (il-campo) ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stats-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}
.stats-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ========== SCROLL ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-down"] { transform: translateY(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .booking-bar-content { flex-wrap: wrap; }
    .booking-bar-text { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-details-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .header { position: fixed; }
    .main-nav {
        position: fixed; top: 0; left: 0; width: 100%;
        z-index: 1001;
    }
    .main-nav .container { padding: 0 1.2rem; }
    .nav-logo img { height: 48px; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -300px;
        width: 300px; height: 100vh;
        background: var(--teal);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: right var(--t-fast);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }
    .nav-menu.open { right: 0; }
    .nav-link {
        line-height: 3; padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-right { display: none; }

    .hero { padding-top: 55px; }

    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .academy-layout { grid-template-columns: 1fr; gap: 2rem; }
    .events-layout { grid-template-columns: 1fr; }
    .events-right { min-height: 400px; }
    .skills-layout { grid-template-columns: 1fr; gap: 2rem; }
    .action-cards { grid-template-columns: repeat(2, 1fr); }
    .action-card.offset-down { margin-top: 0; }
    .course-layout { grid-template-columns: 1fr; gap: 2rem; }
    .holes-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 350px; }
}

@media (max-width: 768px) {
    :root { --section-py: 70px; }
    .hero {
        height: auto; min-height: auto;
    }
    .hero-slider {
        position: relative; width: 100%; height: 0; padding-bottom: 75%;
    }
    .hero-slide { background-position: center center; }
    .hero-overlay {
        display: none;
    }
    .hero-content {
        position: relative;
        width: 100%; height: auto;
        display: block;
        margin-top: -60px;
        z-index: 2;
        background: linear-gradient(180deg, transparent 0%, rgba(22,56,50,0.8) 30%);
        padding-bottom: 0;
    }
    .hero-text { padding: 15px 20px; }
    .hero h1 { font-size: 1.4rem; color: var(--white); text-shadow: 0 2px 15px rgba(0,0,0,0.5); }
    .hero-heading-wrapper .green-bar { width: 4px; margin-right: 12px; }
    .hero-dots { display: none; }

    .booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: #163832;
    }
    .booking-bar-content { padding: 18px 0; gap: 1rem; }
    .booking-bar-text strong { font-size: 1rem; }
    .booking-bar-form { flex-wrap: wrap; }
    .booking-field { min-width: calc(50% - 0.5rem); }
    .booking-bar .btn-accent { width: calc(50% - 0.5rem); justify-content: center; }

    /* Hole navigation mobile adjustments */
    .hole-nav { padding: 1rem 1.2rem; }
    .hole-nav a, .hole-nav span { font-size: 0.9rem; }
    .hole-nav .all-holes { font-size: 0.65rem; letter-spacing: 1.5px; }

    .action-cards { grid-template-columns: 1fr 1fr; }
    .action-card { height: 320px; }
    .holes-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .hole-card { padding: 0.8rem; }
    .hole-card-img { height: 80px; }
    .hole-name { font-size: 0.85rem; }
    .hole-par { font-size: 0.6rem; padding: 3px 8px; }
    .hole-sponsor { display: none; }
    .hole-readmore { font-size: 0.6rem; padding: 6px 10px; margin: 0 0 0.8rem; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stats-num { font-size: 2.2rem; }
    .course-feature-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-form .form-row-2 { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
    .events-left { padding: 40px 25px; }
    .contact-info-panel { padding: 40px 25px; }
    .event-dates { flex-direction: column; gap: 1rem; }
    .contact-cta-row { flex-direction: column; align-items: stretch; }
    .contact-cta-row .btn-contact { width: 100%; text-align: center; justify-content: center; }
    .academy-buttons { width: 100%; }
    .academy-buttons .btn { width: 100%; text-align: center; justify-content: center; }

    /* All button groups: full width stacked on mobile */
    .btn { width: 100%; text-align: center; justify-content: center; }
    .prova-cta-row { flex-direction: column; }
    .prova-cta-row .btn { flex: unset; width: 100%; }
    .sponsor-cta .btn { max-width: 100%; }
    .hole-sponsor-card .btn { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    h1 { font-size: 2.4rem; }
    .hero-heading-wrapper .green-bar { width: 4px; margin-right: 15px; }
    .booking-field { min-width: 100%; }
    .action-cards { grid-template-columns: 1fr; }
    .action-card { height: 280px; }
    .stats-card { left: 10px; bottom: -20px; padding: 12px 16px; }
    .video-bg { background-attachment: scroll; }
    .whatsapp-fab { bottom: 18px; right: 18px; }
    .back-to-top { bottom: 80px; right: 18px; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }
    .academy-title { font-size: 2rem; left: 20px; bottom: 20px; }
    .events-title { font-size: 2rem; right: 20px; bottom: 20px; }
    .hole-detail-sidebar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .booking-field { min-width: 100%; }
    .stats-card { padding: 10px 12px; left: 5px; }
}

@media (pointer: coarse) {
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* ========== BUCA HERO SLOW PAN ANIMATION ========== */
.hole-hero-img {
    animation: slowPan 30s ease-in-out infinite alternate;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}
.scroll-hint { text-align: center; margin-top: 2rem; }
.scroll-hint i { font-size: 1.5rem; color: var(--accent-light); animation: bounceDown 2s infinite; }
.hole-card { cursor: pointer; }

@keyframes slowPan {
    0% { transform: scale(1.15) translate(0, 0); }
    25% { transform: scale(1.15) translate(-2%, -1%); }
    50% { transform: scale(1.15) translate(1%, -2%); }
    75% { transform: scale(1.15) translate(-1%, 1%); }
    100% { transform: scale(1.15) translate(2%, -1%); }
}

/* ===== DOCUMENTS GRID ===== */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.doc-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.doc-card .fa-file-pdf {
    font-size: 2.5rem;
    color: #e74c3c;
}

.doc-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
}

.doc-download {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.doc-card:hover .doc-download {
    color: var(--accent-dark);
}

@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}
