
:root{
  --bg:#0B0F14;
  --card:#121821;
  --card-2:#171f2b;
  --text:#F8FAFC;
  --muted:#94A3B8;
  --primary:#22C55E;
  --primary-dark:#16A34A;
  --border:rgba(255,255,255,.08);
  --glass:rgba(255,255,255,.05);
  --shadow:0 20px 60px rgba(0,0,0,.35);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.6;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

.bg-blur{
  position:fixed;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur-1{
  width:350px;
  height:350px;
  background:#22c55e33;
  top:-100px;
  left:-100px;
}

.blur-2{
  width:400px;
  height:400px;
  background:#22c55e22;
  bottom:-100px;
  right:-100px;
}

.navbar{
  position:sticky;
  top:0;
  backdrop-filter:blur(20px);
  background:rgba(11,15,20,.75);
  border-bottom:1px solid var(--border);
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:80px;
}

.logo{
  display:flex;
  gap:12px;
  align-items:center;
}


.logo{
  display:flex;
  align-items:center;
}

.turfease-logo{
  font-size:2rem;
  font-weight:900;

  letter-spacing:-2px;

  line-height:1;

  color:#fff;

  text-transform:uppercase;
}

.logo-text span{
  display:block;

  margin-top:2px;

  font-size:.60rem;

  letter-spacing:6px;

  color:var(--muted);

  text-transform:uppercase;
}
.turfease-logo{
  font-size:2rem;
  font-weight:900;

  letter-spacing:-3px;

  color:white;

  text-transform:uppercase;

  text-shadow:
    1px 0 0 #fff,
   -1px 0 0 #fff,
    0 1px 0 #fff,
    0 -1px 0 #fff;
}

.desktop-menu{
  display:flex;
  gap:28px;
}
.logo{
    width:260px;
    overflow:hidden;
}

.logo-img{
    height:95px;
    width:auto;

    transform:scale(1.5);
    transform-origin:left center;
}
.desktop-menu a:hover{
  color:var(--primary);
}

.nav-actions{
  display:flex;
  gap:12px;
}

.btn-primary,
.btn-outline{
  padding:12px 20px;
  border-radius:14px;
  transition:.3s;
  font-weight:600;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:1px solid var(--border);
  background:var(--glass);
}

.mobile-toggle,
.mobile-menu{
  display:none;
}
.mobile-menu.active{
    display:flex;
    flex-direction:column;
}
@media(max-width:768px){

.hero-visual{
    height:500px;
}

.phone-home{
    right:100px;
    top:50px;
}

.phone-booking{
    right:0;
    top:0;
}

}

.hero{
  padding:100px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:40px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:var(--glass);
  border:1px solid var(--border);
  margin-bottom:24px;
}

.hero-content h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-content h1 span{
  color:var(--primary);
}

.hero-content p{
  color:var(--muted);
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-top:30px;
}

.hero-users{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:35px;
}

.avatars{
  display:flex;
}

.avatars span{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#334155;
  border:2px solid var(--bg);
  margin-left:-8px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
}

.hero-visual{
  position:relative;
  height:600px;
}

.phone{
  position:absolute;

  width:235px;
  height:500px;

  background:#111827;

  border:8px solid #111827;

  border-radius:38px;

  overflow:hidden;

  box-shadow:
      0 25px 60px rgba(0,0,0,.5);
}

.hero-visual{
  position:relative;
  height:650px;
}

.phone-home{
  position:absolute;

  right:140px;
  top:70px;

  z-index:1;

  transform:
    rotate(-18deg);
}

.phone-booking{
  position:absolute;

  right:30px;
  top:10px;

  z-index:2;

  transform:
    rotate(6deg);
}
.app-screen{
  width:100%;
  height:100%;

  object-fit:fill;

  border-radius:30px;

  display:block;
}

.booking-card button{
  margin-top:12px;
  border:none;
  padding:10px 15px;
  border-radius:12px;
  background:var(--primary);
  color:white;
}

.stats{
  padding:40px 0 90px;
}

.stats-grid,
.feature-grid,
.steps{
  display:grid;
  gap:25px;
}

.stats-grid{
  grid-template-columns:repeat(4,1fr);
}

.stat-card,
.feature-card,
.step{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
}

.stat-card h2{
  color:var(--primary);
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  color:var(--primary);
  font-weight:700;
}

.section-title h2{
  margin-top:10px;
  font-size:2.5rem;
}

.features,
.how-it-works,
.partners,
.faq,
.cta{
  padding:100px 0;
}

.feature-grid{
  grid-template-columns:repeat(3,1fr);
}

.feature-card .icon{
  font-size:2rem;
  margin-bottom:15px;
}

.feature-card p{
  color:var(--muted);
}

.steps{
  grid-template-columns:repeat(3,1fr);
}

.step span{
  color:var(--primary);
  font-size:2rem;
  font-weight:800;
}

.partner-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.partner-content span{
  color:var(--primary);
  font-weight:700;
}

.partner-content h2{
  font-size:3rem;
  margin:10px 0 15px;
}

.partner-content p,
.partner-content li{
  color:var(--muted);
}

.partner-content ul{
  margin:20px 0;
  list-style:none;
}

.partner-card{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:30px;
  padding:30px;
}

.earning-box{
  margin-top:20px;
  padding:20px;
  border-radius:20px;
  background:#1a2330;
}

.mini-chart{
  margin-top:20px;
  height:140px;
  border-radius:20px;
  background:linear-gradient(180deg,#22c55e55,#22c55e11);
}

.faq-list{
  max-width:850px;
  margin:auto;
}

.faq-item{
  margin-bottom:15px;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

.faq-item button{
  width:100%;
  background:var(--glass);
  color:var(--text);
  border:none;
  padding:20px;
  text-align:left;
}

.answer{
  padding:20px;
  color:var(--muted);
}

.cta-card{
  text-align:center;
  background:linear-gradient(135deg,#121821,#1b2735);
  border:1px solid var(--border);
  border-radius:32px;
  padding:60px;
}

.cta-card h2{
  font-size:3rem;
}
@media(max-width:768px){

.footer{
    text-align:center;
}

.copyright{
    font-size:14px;
}

}
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:25px;
}

.footer{
  border-top:1px solid var(--border);
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
}

.footer h4{
  margin-bottom:12px;
}

.footer a{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
}

.copyright{
  text-align:center;
  padding:25px;
  color:var(--muted);
  margin-top:40px;
}
.mobile-menu{
    display:none;
}

@media(max-width:992px){

.mobile-menu{
    display:flex;
    flex-direction:column;
    gap:15px;

    padding:20px;

    border-top:1px solid var(--border);

    background:#0B0F14;
}

.mobile-menu a{
    color:white;
}

}
@media(max-width:992px){
  .hero-grid,
  .partner-wrapper,
  .stats-grid,
  .feature-grid,
  .steps,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .desktop-menu,
  .nav-actions{
    display:none;
  }

  .mobile-toggle{
    display:block;
    cursor:pointer;
    font-size:1.4rem;
  }

  .hero-content h1{
    font-size:3rem;
  }

  .hero-visual{
    height:650px;
  }

.phone{
  position:absolute;

  width:240px;
  height:500px;

  background:#111827;

  border:8px solid #111827;

  border-radius:38px;

  overflow:hidden;

  box-shadow:
    0 25px 60px rgba(0,0,0,.45);

  padding:0;
}
}

@media(max-width:768px){
  .hero-buttons,
  .cta-buttons{
    flex-direction:column;
  }

  .hero-content h1{
    font-size:2.5rem;
  }

  .partner-content h2,
  .cta-card h2{
    font-size:2rem;
  }
}
/* Smooth Hover Effects */

.feature-card,
.stat-card,
.step,
.partner-card,
.faq-item{
    transition: all 0.35s ease;
}

.feature-card:hover,
.stat-card:hover,
.step:hover,
.partner-card:hover{
    transform: translateY(-8px);
    border-color: rgba(34,197,94,0.5);
    box-shadow: 0 20px 40px rgba(34,197,94,0.15);
}

/* Selection Color */

::selection{
    background:#22C55E;
    color:#fff;
}

/* Custom Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0B0F14;
}

::-webkit-scrollbar-thumb{
    background:#22C55E;
    border-radius:10px;
}

/* Hero Gradient Text */

.hero-content h1 span{
    background:linear-gradient(
        135deg,
        #22C55E,
        #4ADE80
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Better Button Hover */

.btn-primary:hover{
    box-shadow:
        0 10px 30px rgba(34,197,94,0.35);

    transform:
        translateY(-3px);
}
.contact-input{
    width:100%;
    margin-bottom:15px;
    padding:15px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
    background:#121821;
    color:#fff;
    outline:none;
}

.contact-input:focus{
    border-color:#22C55E;
}
.notch{
  position:absolute;

  top:8px;
  left:50%;

  transform:translateX(-50%);

  width:55px;
  height:12px;

  background:#000;

  border-radius:999px;

  z-index:20;
}
.logo-img{
    height:95px;
    width:auto;
    display:block;
}

@media(max-width:768px){

.logo-img{
    height:70px;
}

.partner-card{
    padding:22px;
}

.partner-card h3{
    font-size:1.15rem;
}

.partner-card p,
.partner-card li{
    font-size:.95rem;
}

.section-title h2{
    font-size:2rem;
}

.hero{
    padding:70px 0;
}

}