/* ════════════════════════════════════════════
   ORION PADEL CLUB — Final Design
   Colors: Blue #2B7FD4 + Orange #E87722
   ════════════════════════════════════════════ */

:root {
    --blue:        #2B7FD4;
    --blue-dark:   #1A5BA8;
    --blue-deeper: #0D3F7A;
    --blue-light:  #EBF5FF;
    --blue-mid:    #D0E8FF;
    --orange:      #E87722;
    --orange-dim:  rgba(232, 119, 34, 0.10);
    --orange-bdr:  rgba(232, 119, 34, 0.25);
    --white:       #FFFFFF;
    --bg:          #FFFFFF;
    --bg-2:        #F0F7FF;
    --card:        #FFFFFF;
    --card-bdr:    #D8E8F8;
    --text:        #0B2040;
    --muted:       #5A7A9A;
    --radius:      16px;
    --radius-sm:   10px;
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --shadow:      0 4px 24px rgba(0, 87, 184, 0.10);
    --shadow-lg:   0 16px 48px rgba(0, 87, 184, 0.14);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--blue); }

/* ── Section Tag ── */
.section-tag {
    display: inline-block;
    background: var(--blue-light);
    border: 1px solid rgba(43, 127, 212, 0.20);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-tag-white {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.15; }
.section-header > p { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }
.insta-link { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(43,127,212,0.3); transition: border-color 0.2s; }
.insta-link:hover { border-color: var(--blue); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: white;
    border: none;
    padding: 15px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: #d06818; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,119,34,0.35); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.30);
    padding: 15px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: white; color: white; transform: translateY(-2px); }

/* ════════════════════ NAVBAR ════════════════════ */
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    padding: 14px 0;
    transition: background 0.3s, padding 0.3s, border-color 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--card-bdr);
    box-shadow: 0 2px 20px rgba(0,87,184,0.08);
    padding: 10px 0;
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; }

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; transition: transform 0.3s; }
.nav-logo:hover .nav-logo-img { transform: rotate(10deg) scale(1.05); }
.nav-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; letter-spacing: 2px; color: white; transition: color 0.3s; }
.nav-logo-text span { color: var(--orange); }
#navbar.scrolled .nav-logo-text { color: var(--text); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: white; background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-links a { color: var(--muted); }
#navbar.scrolled .nav-links a:hover { color: var(--text); background: var(--bg-2); }

.nav-cta { flex-shrink: 0; background: var(--orange); color: white; border: none; padding: 10px 22px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 700; transition: background 0.2s, transform 0.2s; }
.nav-cta:hover { background: #d06818; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
#navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════ HERO ════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hero-bg {
    position: absolute; inset: 0;
    background-image: url('474686653_601663159122878_315167343641763235_n.jpg');
    background-size: cover; background-position: center top;
    transform: scale(1.08);
    animation: hero-zoom 14s ease forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(10,30,70,0.92) 0%, rgba(10,30,70,0.68) 50%, rgba(10,30,70,0.82) 100%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute; background: var(--orange); border-radius: 50%; opacity: 0;
    animation: p-rise var(--dur, 10s) linear var(--del, 0s) infinite;
}
@keyframes p-rise {
    0% { opacity: 0; transform: translateY(110vh) scale(0.5); }
    8% { opacity: 0.7; }
    85% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-60px) scale(1.2); }
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 100px 24px 60px; max-width: 860px; }

.hero-logo {
    width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid rgba(255,255,255,0.25);
    box-shadow: 0 0 0 8px rgba(43,127,212,0.20), 0 20px 60px rgba(0,0,0,0.4);
    animation: fade-up 0.8s var(--ease) 0.1s both, float 6s ease-in-out 1s infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-tagline {
    display: inline-block;
    background: var(--orange-dim);
    border: 1px solid var(--orange-bdr);
    color: var(--orange);
    font-size: 0.78rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 20px; border-radius: 100px; margin-bottom: 20px;
    animation: fade-up 0.8s var(--ease) 0.3s both;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1.05; letter-spacing: -1px; color: white;
    margin-bottom: 20px;
    animation: fade-up 0.8s var(--ease) 0.5s both;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,255,255,0.65);
    max-width: 560px; margin: 0 auto 40px;
    animation: fade-up 0.8s var(--ease) 0.7s both;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; animation: fade-up 0.8s var(--ease) 0.9s both; }

.hero-stats { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; animation: fade-up 0.8s var(--ease) 1.1s both; }
.hero-stat { padding: 0 32px; text-align: center; }
.hero-stat-num, .hero-stat-fixed {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1;
}
.hero-stat-plus { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--orange); }
.hero-stat-label { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.12); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: fade-up 0.8s var(--ease) 1.3s both; }
.hero-scroll span { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.30); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--orange), transparent); animation: pulse-line 2.5s ease infinite; }
@keyframes pulse-line { 0%,100% { opacity: 0.20; } 50% { opacity: 1; } }

@keyframes fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════ MARQUEE ════════════════════ */
.marquee-strip {
    background: var(--blue-dark);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
}
.marquee-track {
    display: inline-flex;
    gap: 32px;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    color: white;
}
.marquee-dot { color: var(--orange) !important; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════ ABOUT ════════════════════ */
.about { padding: 120px 0; background: white; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-text h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; color: var(--text); margin-bottom: 20px; }
.about-text > p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.94rem; color: var(--text); }
.check { color: var(--blue); font-weight: 700; flex-shrink: 0; }

.about-image { position: relative; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
    position: absolute; bottom: -24px; left: -24px;
    background: white; border: 1px solid var(--card-bdr); border-radius: var(--radius);
    padding: 20px 28px; text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge-num { font-family: 'Montserrat', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--blue); display: block; line-height: 1; }
.about-badge-stars { color: #f59e0b; font-size: 0.9rem; display: block; margin: 6px 0 4px; letter-spacing: 2px; }
.about-badge-label { font-size: 0.68rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* ════════════════════ AERIAL PANORAMIC ════════════════════ */
.aerial { position: relative; height: 520px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.aerial-img { position: absolute; inset: 0; }
.aerial-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 12s ease; }
.aerial:hover .aerial-img img { transform: scale(1); }
.aerial-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,63,122,0.88) 0%, rgba(43,127,212,0.65) 100%); }
.aerial-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px; max-width: 700px;
}
.aerial-content h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.1; }
.aerial-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.btn-aerial {
    display: inline-block;
    background: var(--orange); color: white;
    border: none; padding: 14px 36px;
    font-size: 1rem; font-weight: 700; border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.btn-aerial:hover { background: #d06818; transform: translateY(-2px); }

/* ════════════════════ SERVICES ════════════════════ */
.services { padding: 120px 0; background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    background: white; border: 1px solid var(--card-bdr); border-radius: var(--radius); overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(43,127,212,0.25); box-shadow: var(--shadow-lg); }

.service-img-wrap { position: relative; overflow: hidden; height: 240px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.55s var(--ease); }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-img-overlay { position: absolute; inset: 0; background: rgba(43,127,212,0.88); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.service-card:hover .service-img-overlay { opacity: 1; }
.service-img-overlay span { font-weight: 700; color: white; font-size: 1rem; }

.service-body { padding: 28px 24px; }
.service-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.service-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }
.service-link { color: var(--blue); font-weight: 600; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 4px; cursor: pointer; transition: gap 0.2s; }
.service-link:hover { gap: 8px; }

/* ════════════════════ GALLERY ════════════════════ */
.gallery { padding: 120px 0; background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 10px; margin-bottom: 32px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,70,0.85) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.88rem; }
.gallery-cta { text-align: center; }
.btn-instagram {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white; padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.95rem; transition: opacity 0.2s, transform 0.2s;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }

/* ════════════════════ PRICING ════════════════════ */
.pricing { padding: 120px 0; background: var(--bg-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.pricing-card {
    background: white; border: 1px solid var(--card-bdr); border-radius: var(--radius);
    padding: 36px 28px; position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,87,184,0.05);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--blue); background: linear-gradient(160deg, #f0f6ff, #e0eeff); box-shadow: 0 8px 32px rgba(43,127,212,0.18); }

.featured-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: white;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 18px; border-radius: 100px; white-space: nowrap;
}

.pricing-icon { font-size: 2.4rem; margin-bottom: 16px; }
.pricing-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pricing-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 24px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }
.pricing-list li { font-size: 0.875rem; color: var(--text); }

.btn-pricing { width: 100%; background: transparent; color: var(--blue); border: 1.5px solid rgba(43,127,212,0.25); padding: 14px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; transition: background 0.2s, color 0.2s, border-color 0.2s; text-decoration: none; cursor: pointer; }
.btn-pricing:hover { background: var(--blue); color: white; border-color: var(--blue); }
.btn-pricing-featured { background: var(--blue); color: white; border-color: var(--blue); }
.btn-pricing-featured:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.pricing-pkg-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.btn-pkg {
    flex: 1; min-width: 80px;
    background: rgba(43,127,212,0.08); color: var(--blue);
    border: 1px solid rgba(43,127,212,0.25); padding: 9px 8px;
    border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700;
    text-align: center; text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-pkg:hover { background: var(--blue); color: white; }

/* ════════════════════ REVIEWS ════════════════════ */
.reviews { padding: 120px 0; background: white; }
.rating-overall { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; }
.rating-big { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--blue); line-height: 1; }
.rating-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; }
.rating-count { color: var(--muted); font-size: 0.85rem; display: block; margin-top: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: white; border: 1px solid var(--card-bdr); border-radius: var(--radius); padding: 28px; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 2px 12px rgba(0,87,184,0.05); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; color: white; flex-shrink: 0; }
.reviewer-info { flex: 1; }
.reviewer-info h4 { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.review-stars { font-size: 0.75rem; }
.google-g { width: 28px; height: 28px; background: #4285F4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.8rem; color: white; flex-shrink: 0; }
.review-card > p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; font-style: italic; }

/* ════════════════════ FOOTER ════════════════════ */
footer { background: var(--blue-deeper); }
.footer-top { padding: 80px 0 60px; border-top: 4px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; align-items: start; }

.footer-brand { display: flex; flex-direction: column; }
.footer-logo-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid rgba(255,255,255,0.15); }
.footer-brand > p { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.75; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--orange); color: var(--orange); }

.footer-contact h3, .footer-map h3 { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; color: white; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item > span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 3px; }
.contact-item p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-item a:hover { color: var(--orange); }

.map-wrap { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.10); }
.map-wrap iframe { width: 100%; height: 200px; display: block; filter: brightness(0.8) saturate(0.8); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.30); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ════════════════════ MODAL ════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,30,70,0.80); backdrop-filter: blur(12px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal { background: white; border: 1px solid var(--card-bdr); border-radius: var(--radius); padding: 40px 36px; max-width: 440px; width: 100%; position: relative; transform: translateY(20px) scale(0.97); transition: transform 0.35s var(--ease); box-shadow: var(--shadow-lg); text-align: center; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg-2); border: 1px solid var(--card-bdr); color: var(--muted); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: background 0.2s, color 0.2s; }
.modal-close:hover { background: var(--blue); color: white; border-color: var(--blue); }

.modal-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--card-bdr); }
.modal h2 { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.modal > p { color: var(--muted); margin-bottom: 24px; font-size: 0.9rem; }

.modal-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; text-align: left; }
.modal-option { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid transparent; transition: transform 0.2s, background 0.2s; }
.modal-option:hover { transform: translateX(4px); }
.modal-icon { font-size: 1.4rem; }
.modal-option div { display: flex; flex-direction: column; }
.modal-option strong { font-size: 0.9rem; font-weight: 700; }
.modal-option span { font-size: 0.8rem; opacity: 0.75; }

.modal-phone { background: rgba(43,127,212,0.07); border-color: rgba(43,127,212,0.20); color: var(--blue); }
.modal-phone:hover { background: rgba(43,127,212,0.12); }
.modal-whatsapp { background: rgba(37,211,102,0.07); border-color: rgba(37,211,102,0.20); color: #15803d; }
.modal-whatsapp:hover { background: rgba(37,211,102,0.12); }
.modal-email { background: var(--orange-dim); border-color: var(--orange-bdr); color: var(--orange); }
.modal-email:hover { background: rgba(232,119,34,0.14); }

.modal-hours { color: var(--muted); font-size: 0.82rem; padding-top: 16px; border-top: 1px solid var(--card-bdr); }

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex; flex-direction: column; position: fixed; inset: 0;
        background: white; z-index: 800; align-items: center; justify-content: center; gap: 8px;
    }
    .nav-links.open li a { font-size: 1.5rem; font-weight: 700; color: var(--text); padding: 12px 28px; display: block; }
    .nav-links.open li a:hover { color: var(--blue); }

    .hero-logo { width: 100px; height: 100px; }
    .hero-title { font-size: 2.4rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-stat-divider { display: none; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

    .aerial { height: 400px; }

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

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .reviews-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }

    .rating-overall { flex-direction: column; gap: 12px; }
    .about, .services, .gallery, .pricing, .reviews { padding: 80px 0; }
    .aerial { padding: 0; }

    .reel-section { padding: 60px 0; }
    .reel-container { flex-direction: column; gap: 40px; }
    .reel-text { text-align: center; }
    .reel-video-wrap { width: 100%; max-width: 400px; margin: 0 auto; }
    .reel-iframe { height: 500px; }
}

/* ════════════════════════════════════════════
   REEL VIDEO SECTION
   ════════════════════════════════════════════ */
.reel-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--footer-dark);
}

.reel-aerial-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.reel-aerial-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: blur(1px) saturate(1.2);
}
.reel-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,21,38,0.55) 0%, rgba(43,127,212,0.20) 100%);
}

.reel-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.reel-text {
    flex: 1;
    color: white;
}
.reel-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}
.reel-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.reel-video-wrap {
    flex: 0 0 380px;
    max-width: 380px;
}
.reel-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.15);
    background: #000;
    animation: reel-glow 3s ease-in-out infinite alternate;
}
@keyframes reel-glow {
    from { box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 20px rgba(43,127,212,0.2); }
    to   { box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(232,119,34,0.3); }
}
.reel-iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

/* ════════════════════════════════════════════
   HERO BALL ANIMATION (Skill-inspired)
   ════════════════════════════════════════════ */
.hero-ball {
    position: absolute;
    font-size: 3rem;
    z-index: 2;
    pointer-events: none;
    animation: ball-orbit 12s linear infinite;
    opacity: 0.4;
    top: 20%;
    left: 8%;
}
@keyframes ball-orbit {
    0%   { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    25%  { transform: translate(30px, 40px) rotate(90deg); opacity: 0.6; }
    50%  { transform: translate(-20px, 80px) rotate(180deg); opacity: 0.3; }
    75%  { transform: translate(-40px, 20px) rotate(270deg); opacity: 0.5; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.3; }
}

/* ════════════════════════════════════════════
   ENHANCED SKILL ANIMATIONS
   ════════════════════════════════════════════ */

/* Shimmer on CTA buttons */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    animation: btn-shimmer 3.5s ease infinite;
}
@keyframes btn-shimmer {
    0%   { left: -75%; }
    40%  { left: 125%; }
    100% { left: 125%; }
}

/* Court line pattern on services section */
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 50%, var(--blue) 100%);
    background-size: 200% 100%;
    animation: court-line 4s linear infinite;
}
.services { position: relative; }
@keyframes court-line {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Pulse on logo in navbar */
.nav-logo-img {
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-logo:hover .nav-logo-img {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 20px rgba(232,119,34,0.5);
}

/* Stats counter pop animation */
.hero-stat-num {
    display: inline-block;
    transition: transform 0.3s;
}
.hero-stat:hover .hero-stat-num {
    transform: scale(1.15);
    color: var(--orange);
}

/* Card hover 3D tilt effect */
.service-card { transform-style: preserve-3d; }
.service-card:hover { box-shadow: 0 20px 40px rgba(43,127,212,0.18), 0 0 0 2px var(--orange); }

/* Review card entrance */
.review-card {
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.review-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(232,119,34,0.12);
}

/* Pricing featured pulse */
.pricing-card.featured {
    animation: featured-pulse 4s ease-in-out infinite;
}
@keyframes featured-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(43,127,212,0.18); }
    50%       { box-shadow: 0 8px 40px rgba(43,127,212,0.35), 0 0 0 3px rgba(43,127,212,0.15); }
}

/* Floating aerial section image */
.reel-aerial-bg {
    animation: aerial-float 20s ease-in-out infinite alternate;
}
@keyframes aerial-float {
    from { transform: scale(1.05) translateY(0); }
    to   { transform: scale(1.12) translateY(-20px); }
}

/* ════════════════════ ΕΙΚΟΝΙΔΙΑ (αντικατέστησαν τα emoji) ════════════════════ */
.service-icon svg  { width: 32px; height: 32px; stroke: var(--blue); }
.pricing-icon svg  { width: 40px; height: 40px; stroke: var(--blue); margin: 0 auto; }
.modal-icon svg    { width: 22px; height: 22px; }
.contact-icon      { display: inline-flex; align-items: center; justify-content: center; }
.contact-icon svg  { width: 20px; height: 20px; stroke: var(--blue); }
.ico               { width: 17px; height: 17px; vertical-align: -3px; display: inline-block; }

/* Χρωματιστές τελείες για τα γήπεδα (αντί για 🔴 🔵) */
.info-icon.info-red,
.info-icon.info-blue { width: 14px; height: 14px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.info-icon.info-red  { background: #E23B3B; }
.info-icon.info-blue { background: #2B7FD4; }
.info-icon svg       { width: 20px; height: 20px; stroke: var(--blue); }

/* Εικονίδια εσωτερικών σελίδων */
.pkg-icon svg, .highlight-icon svg, .picon svg { width: 30px; height: 30px; stroke: currentColor; }

/* ════════════ Λίστες υπηρεσιών (χωρίς τιμές) ════════════ */
.pricing-list li {
    position: relative;
    padding-left: 22px;
    line-height: 1.55;
}
.pricing-list li::before {
    content: '';
    position: absolute;
    left: 2px; top: 8px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .55;
}
.pricing-card.featured .pricing-list li::before { background: var(--blue); opacity: .8; }

/* Ομοιόμορφα εικονίδια ενοτήτων */
.service-icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.pricing-icon svg { width: 40px; height: 40px; stroke: var(--blue); margin: 0 auto 4px; }
