

:root {
    --emerald: #0fa968;
    --dark-emerald: #0a8452;
    --deep-emerald: #065f3a;
    --midnight: #0a0f1a;
    --black: #05070f;
    --gold: #d4af37;
    --light-gold: #f4e4a6;
    --neon-green: #00ff88;
    --frost-white: rgba(255, 255, 255, 0.9);
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* -------------------------------------------
   Floating glass navbar (out-of-box)
-------------------------------------------- */
.nav-wrap{
  position:fixed;
  inset: 18px 0 auto 0;
  display:flex;
  justify-content:center;
  z-index:1000;
  pointer-events:none;
}
.nav{
  pointer-events:auto;
  width:min(1400px, calc(100% - 80px));
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(10,14,20,.55);
  backdrop-filter: blur(16px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  transform: translateZ(0);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.nav.shrink{
  transform: translateY(-6px) scale(.98);
  background: rgba(10,14,20,.72);
  border-color: rgba(255,255,255,.16);
}
.brand{
  display:flex; align-items:center; gap:10px;
  padding-left:6px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background:
    linear-gradient(135deg, rgba(15, 169, 104, 0.85), rgba(212, 175, 55, 0.70));
  box-shadow: 0 12px 30px rgba(15, 169, 104, 0.16);
  border:1px solid rgba(255,255,255,.18);
}
.brand b{ letter-spacing:.06em; text-transform:uppercase; font-size:12px; color: rgba(255,255,255,.86); }
.brand span{ display:block; font-size:12px; color: rgba(255,255,255,.62); margin-top:-2px; }

.nav-links{
  display:flex; align-items:center; gap:6px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  padding:6px;
  border-radius:999px;
}
.nav-links a{
  position:relative;
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.05em;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover{ background: rgba(255,255,255,.07); color: rgba(255,255,255,.92); transform: translateY(-1px); }
.nav-links a.active{
  background: rgba(15, 169, 104, 0.12);
  color: rgba(255,255,255,.92);
  border:1px solid rgba(15, 169, 104, 0.18);
}

.nav-ctas{
  display:flex; align-items:center; gap:8px;
  padding-right:6px;
}

/* -------------------------------------------
   Premium magnetic buttons
-------------------------------------------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  font-weight:650;
  letter-spacing:.02em;
  font-size:13px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  cursor:pointer;
  user-select:none;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
}
.btn:active{ transform: translateY(0px) scale(.99); }

.btn-primary{
  border-color: rgba(15, 169, 104, 0.22);
  background:
    linear-gradient(135deg, var(--emerald), var(--dark-emerald));
}
.btn-primary::before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(15, 169, 104, 0.28), transparent 44%);
  opacity:0;
  transition: opacity .18s ease;
  pointer-events:none;
}
.btn-primary:hover::before{ opacity:1; }

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  box-shadow:none;
}

.btn .chip{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
    color: white;
    box-shadow: 0 8px 30px rgba(15, 169, 104, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 169, 104, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--emerald);
    background: rgba(15, 169, 104, 0.1);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--midnight);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero{
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 7, 15, 0.8), rgba(5, 7, 15, 0.9)), 
                url('./hero.avif');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(15, 169, 104, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    background: linear-gradient(to right, white, var(--light-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 .accent {
    color: var(--neon-green);
    font-size: 4rem;
    margin-top: 10px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Golf Ball */
.floating-ball {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, white, #f0f0f0);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
    right: 15%;
    top: 30%;
    animation: float 6s ease-in-out infinite;
}

.floating-ball:after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, var(--dark-emerald), var(--deep-emerald));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(15, 169, 104, 0.7);
}

.floating-ball-2 {
    width: 40px;
    height: 40px;
    right: 25%;
    top: 60%;
    animation: float 8s ease-in-out infinite 1s;
}

.floating-ball-3 {
    width: 30px;
    height: 30px;
    right: 10%;
    top: 70%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, white, var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Why Section */
.why-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    width: 250px;
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: var(--emerald);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Technology Showcase */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-content {
    position: sticky;
    top: 120px;
}

.tech-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.tech-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.simulator-display {
    background: linear-gradient(145deg, #111827, #0a0f1a);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.simulator-display:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--emerald), var(--gold), var(--neon-green), var(--emerald));
    border-radius: 22px;
    z-index: -1;
    animation: border-glow 3s linear infinite;
}

.simulator-screen {
    background: #000;
    border-radius: 10px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.simulator-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0a1f14, #000);
}

.ball-trajectory {
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--neon-green);
    top: 70%;
    left: 10%;
    transform-origin: left;
    animation: swing 4s infinite ease-in-out;
}

.ball-trajectory:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    top: -7px;
    right: 0;
    box-shadow: 0 0 15px var(--neon-green);
}

.data-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    width: 250px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.data-row:last-child {
    margin-bottom: 0;
}

/* Membership Section */
.membership-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.membership-card {
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    width: 320px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.membership-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    border-color: var(--emerald);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.membership-card.popular {
    border-color: var(--gold);
    transform: scale(1.05);
}

.membership-card.popular:hover {
    transform: scale(1.05) translateY(-20px) rotateX(5deg);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--midnight);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
}

.membership-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.membership-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.membership-features {
    list-style: none;
    margin-bottom: 40px;
}

.membership-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 30px;
}

.membership-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* Social Proof */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gold);
}

.stars {
    color: var(--gold);
    margin-bottom: 10px;
}

/* How It Works */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--emerald), var(--gold));
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    padding: 30px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.step-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    border: 5px solid var(--black);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(5, 7, 15, 0.9), rgba(5, 7, 15, 0.95)), 
                url('./Team.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 150px 0;
}

.final-cta h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.horizon-line {
    height: 2px;
    width: 80%;
    margin: 60px auto;
    background: linear-gradient(to right, transparent, var(--emerald), var(--gold), var(--emerald), transparent);
    position: relative;
}

.horizon-line:after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--neon-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Footer */
footer {
    background: var(--midnight);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--emerald);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--emerald);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .final-cta h2 {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-content {
        position: static;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-step {
        flex-direction: row !important;
    }
    
    .step-content {
        width: calc(100% - 100px);
        margin-left: 80px;
    }
    
    .step-number {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h1 .accent {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .membership-card.popular {
        transform: scale(1);
    }
    
    .membership-card.popular:hover {
        transform: translateY(-20px) rotateX(5deg);
    }
    
    .final-cta h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .why-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .why-card {
        width: 100%;
        max-width: 320px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
