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

:root{
  --bg:#000;
  --card:#0d0d0d;
  --card-2:#111;
  --border:rgba(255,255,255,.09);
  --border-strong:rgba(255,255,255,.16);
  --text:#fff;
  --muted:#a7a7a7;
  --soft:#d7d7d7;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}

a{
  color:inherit;
}

.navbar{
  position:sticky;
  top:16px;
  z-index:1000;
  width:min(1440px, calc(100% - 48px));
  margin:16px auto 0;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:rgba(17,17,17,.88);
  border:1px solid rgba(255,255,255,.06);
  border-radius:22px;
  backdrop-filter:blur(16px);
}

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

.nav-logo{
  width:92px;
  height:56px;
  object-fit:contain;
  display:block;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-links a{
  color:#f1f1f1;
  text-decoration:none;
  font-size:16px;
  transition:opacity .25s ease;
}

.nav-links a:hover{
  opacity:.65;
}

.hero{
  min-height:calc(100vh - 90px);
  padding:90px 24px 110px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.location{
  color:#a7a7a7;
  font-size:17px;
  margin-bottom:20px;
}

.hero-logo{
  width:min(560px, 90vw);
  display:block;
  margin:6px auto 28px;
  mix-blend-mode:screen;
  filter:brightness(1.06);
}

.subtitle{
  color:#f4f4f4;
  font-size:27px;
  letter-spacing:.2px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 30px;
  background:#fff;
  color:#000;
  border-radius:999px;
  text-decoration:none;
  font-size:17px;
  font-weight:700;
  margin-top:32px;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.button:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(255,255,255,.08);
}

.button:active{
  transform:scale(.98);
}

.button-small{
  min-height:52px;
  margin-top:26px;
  padding:0 24px;
}

.hero-rating{
  margin-top:24px;
  text-align:center;
}

.stars{
  color:#f1c75b;
  font-size:27px;
  letter-spacing:5px;
  line-height:1;
  margin-bottom:9px;
}

.hero-rating span{
  color:#9b9b9b;
  font-size:14px;
  letter-spacing:1px;
}

.section{
  width:min(1440px, calc(100% - 48px));
  margin:0 auto;
  padding:120px 0;
}

.section-heading{
  margin-bottom:55px;
}

.section-heading.center{
  text-align:center;
}

.section-tag,
.contact-tag{
  display:block;
  color:#858585;
  font-size:12px;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.section-heading h2{
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.03;
  max-width:900px;
  margin-bottom:20px;
}

.section-heading.center h2{
  margin-left:auto;
  margin-right:auto;
}

.section-lead{
  color:#aaa;
  font-size:18px;
  max-width:760px;
  line-height:1.75;
}

.section-heading.center .section-lead{
  margin-left:auto;
  margin-right:auto;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.service-card,
.about-card,
.academy-card,
.info-box,
.spots-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:28px;
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.service-card{
  padding:32px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.service-card:hover,
.about-card:hover,
.academy-card:hover,
.info-box.clickable:hover{
  transform:translateY(-6px);
  border-color:var(--border-strong);
  box-shadow:0 20px 45px rgba(255,255,255,.045);
}

.service-card-featured{
  border-color:rgba(255,255,255,.15);
}

.service-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#181818;
  color:#fff;
  font-size:23px;
  margin-bottom:22px;
}

.service-card h3{
  font-size:25px;
  margin-bottom:12px;
}

.service-card p{
  color:#aaa;
  font-size:16px;
  line-height:1.75;
}

.card-link{
  margin-top:auto;
  padding-top:24px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  opacity:.88;
}

.card-link:hover{
  opacity:1;
}

.academy-section{
  padding-top:80px;
}

.academy-intro{
  max-width:900px;
}

.academy-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

.academy-card{
  padding:40px;
}

.academy-card-featured{
  border-color:rgba(255,255,255,.15);
}

.academy-label,
.eyebrow{
  color:#8f8f8f;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
}

.academy-card h3{
  font-size:38px;
  line-height:1.08;
  margin:18px 0 16px;
}

.academy-description{
  color:#aaa;
  line-height:1.75;
  font-size:17px;
  max-width:720px;
}

.feature-list{
  list-style:none;
  margin-top:28px;
}

.feature-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:14px;
  color:#d2d2d2;
}

.feature-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:-1px;
  color:#fff;
  font-size:18px;
}

.countdown-card{
  margin-top:50px;
  padding:42px;
  background:linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  border:1px solid rgba(255,255,255,.1);
  border-radius:34px;
}

.countdown-heading{
  text-align:center;
  margin-bottom:34px;
}

.countdown-heading .section-tag{
  margin-bottom:11px;
}

.countdown-heading h3{
  font-size:clamp(36px, 5vw, 62px);
  line-height:1;
  margin-bottom:16px;
}

.countdown-heading p:last-child{
  color:#aaa;
  font-size:18px;
}

.timer{
  display:grid;
  grid-template-columns:repeat(4, minmax(130px, 1fr));
  gap:18px;
  max-width:900px;
  margin:0 auto 28px;
}

.time-box{
  min-height:155px;
  background:#0c0c0c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:25px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.time-box strong{
  font-size:54px;
  line-height:1;
}

.time-box span{
  margin-top:12px;
  color:#858585;
  font-size:12px;
  letter-spacing:3px;
}

.spots-card{
  max-width:900px;
  margin:0 auto;
  padding:34px;
}

.spots-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-bottom:18px;
}

.status-badge{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 15px;
  border-radius:999px;
  background:#123a21;
  color:#65f18f;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
}

.spots-card h4{
  font-size:38px;
  line-height:1.1;
  margin-bottom:12px;
}

.spots-card p{
  color:#aaa;
  font-size:17px;
  line-height:1.75;
}

.about-section{
  padding-top:70px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.about-card{
  padding:32px;
}

.about-card h3{
  font-size:26px;
  margin-bottom:12px;
}

.about-card p{
  color:#aaa;
  line-height:1.75;
  font-size:16px;
}

.contact-section{
  padding-bottom:100px;
}

.contact-grid{
  display:grid;
  grid-template-columns:400px minmax(0,1fr);
  gap:28px;
  align-items:stretch;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-box{
  padding:26px;
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.info-box.clickable{
  text-decoration:none;
  color:#fff;
}

.icon-circle{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#191919;
  color:#fff;
  font-size:22px;
}

.info-label{
  display:block;
  color:#8c8c8c;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.info-box h3{
  font-size:24px;
  margin-bottom:6px;
}

.info-box p{
  color:#bdbdbd;
  line-height:1.7;
  margin:3px 0;
}

.info-box strong{
  color:#fff;
}

.google-profile-button{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  background:#0d0d0d;
  transition:.25s ease;
}

.google-profile-button:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.2);
}

.full-button{
  width:100%;
  margin-top:0;
}

.map-box{
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  background:#0d0d0d;
  transition:.3s ease;
}

.map-box:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(255,255,255,.045);
}

.map-box iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:520px;
  border:0;
  filter:grayscale(100%) invert(90%) contrast(115%);
}

.footer{
  width:min(1440px, calc(100% - 48px));
  margin:0 auto;
  padding:32px 0 46px;
  border-top:1px solid rgba(255,255,255,.09);
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:flex-end;
}

.footer strong{
  display:block;
  font-family:Georgia, serif;
  font-size:26px;
  letter-spacing:3px;
  margin-bottom:5px;
}

.footer span,
.footer p{
  color:#888;
  font-size:13px;
}

@media(max-width:1100px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .contact-grid{
    grid-template-columns:340px minmax(0,1fr);
  }
}

@media(max-width:900px){
  .navbar{
    width:calc(100% - 28px);
    padding:13px 16px;
  }

  .nav-links{
    gap:16px;
  }

  .nav-links a{
    font-size:14px;
  }

  .section{
    width:calc(100% - 32px);
    padding:90px 0;
  }

  .hero{
    padding:70px 18px 90px;
  }

  .subtitle{
    font-size:21px;
  }

  .services-grid,
  .academy-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .timer{
    grid-template-columns:repeat(2, 1fr);
  }

  .countdown-card{
    padding:26px 18px;
  }

  .map-box,
  .map-box iframe{
    min-height:380px;
  }
}

@media(max-width:600px){
  .nav-logo{
    width:76px;
    height:46px;
  }

  .nav-links{
    gap:12px;
  }

  .nav-links li:nth-child(3){
    display:none;
  }

  .hero-logo{
    width:88vw;
  }

  .location{
    font-size:14px;
  }

  .subtitle{
    font-size:18px;
  }

  .button{
    width:100%;
    min-height:56px;
    padding:0 20px;
  }

  .hero-rating{
    margin-top:20px;
  }

  .stars{
    font-size:23px;
  }

  .service-card,
  .academy-card,
  .about-card,
  .info-box{
    padding:24px;
  }

  .academy-card h3{
    font-size:31px;
  }

  .time-box{
    min-height:125px;
  }

  .time-box strong{
    font-size:42px;
  }

  .spots-card h4{
    font-size:30px;
  }

  .spots-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer{
    flex-direction:column;
    align-items:flex-start;
    padding-bottom:30px;
  }
}

@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    transition:none !important;
  }
}
/* DOJA GALLERY */

.gallery-section{
    padding:110px 0;
    overflow:hidden;
}

.gallery-section .section-heading{
    width:min(1440px, calc(100% - 48px));
    margin-left:auto;
    margin-right:auto;
    margin-bottom:50px;
}

.gallery-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.gallery-track{
    display:flex;
    width:max-content;
    gap:20px;
    animation:galleryMove 35s linear infinite;
}

.gallery-track:hover{
    animation-play-state:paused;
}

.gallery-item{
    width:310px;
    height:390px;
    flex-shrink:0;
    overflow:hidden;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

@keyframes galleryMove{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(calc(-50% - 10px));
    }
}

@media(max-width:700px){

    .gallery-item{
        width:240px;
        height:300px;
    }

    .gallery-track{
        gap:14px;
        animation-duration:28s;
    }
}