
:root {
    --bg-main: #0a0a0a;
    --bg-section: #111111;
    --bg-card: #000000;
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.5);
    --text-main: #ffffff;
    --text-muted: #cccccc;
}

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

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

/* STICKY HEADER */
/* STICKY HEADER */
.sticky-header{
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* CONTAINER */
.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 6%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* LEFT BRAND */
.nav-brand{
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: .3px;
  text-decoration: none;
  color: var(--text-main);
  white-space: nowrap;
}

.nav-brand span{
  color: var(--gold);
}

/* CENTER NAV */
.nav-center{
  display: flex;
  justify-content: center;
  gap: 22px;
}

.desktop-nav a{
  text-decoration: none;
  color: var(--text-main);
  opacity: .82;
  font-weight: 600;
  font-size: .95rem;
  transition: .2s;
}

.desktop-nav a:hover{
  opacity: 1;
  color: var(--gold);
}

/* RIGHT CTA */
.nav-cta{
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px var(--gold-soft);
  white-space: nowrap;
}

.nav-cta:hover{
  transform: translateY(-2px);
}

/* MOBILE */
.mobile-toggle{
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu{
  display: none;
  background: rgba(0,0,0,.9);
  padding: 14px 6% 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.mobile-menu a{
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 650;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav-center,
  .nav-cta{
    display: none;
  }
  .mobile-toggle{
    display: inline-flex;
    justify-self: end;
  }
}

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

/* DARK OVERLAY -> ГАРАНТИРАН КОНТРАСТ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18); /* многу полесно */
  z-index: 2;
  pointer-events: none;
}


/* IMAGES */
.hero-images {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 20px;
    z-index: 1;
}

.hero-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  transform: scale(0.9);
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75) contrast(1.05);
}
.hero-img:hover {
  transform: scale(0.95);
  filter: brightness(0.9) contrast(1.08);
}


.hero-img.left {
    background: url('./assets/viber_image_2025-11-26_19-25-47-136.jpg') center/cover no-repeat;
}

.hero-img.center {
    background: url('./assets/viber_image_2025-11-26_19-25-46-708.jpg') center/cover no-repeat;
    transform: scale(1);
}

.hero-img.right {
    background: url('./assets/viber_image_2025-11-26_19-25-51-502.jpg') center/cover no-repeat;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 620px;
  color: #fff;
  text-align: left;

}


/* NAME -> ЧИТЛИВО, МОЌНО */
.hero-text h1{
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;

  /* CLEAN бело (без background-clip / transparent) */
  color: #fff;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #fff !important;

  /* тргни stroke (тоа прави „црти“) */
  -webkit-text-stroke: 0 transparent !important;

  /* контраст без артефакти */
  text-shadow:
    0 12px 40px rgba(0,0,0,0.95),
    0 2px 0 rgba(0,0,0,0.55);

  /* помага за поубав рендер */
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}


/* DESCRIPTION */
.hero-text p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 0.8rem;
    letter-spacing: 0.06em;
    opacity: 0.95;
}

/* SUBTITLE */
.hero-text .subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
}

/* HIGHLIGHT */
.highlight {
    color: var(--gold);
    font-weight: 800;
}

/* LINE */
.red-line {
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    margin: 1.3rem 0;
    box-shadow: 0 0 20px var(--gold-soft);
}


/* ABOUT ME SECTION */
.about-section {
    padding: 120px 5%;
    background: var(--bg-section);
    color: var(--text-main);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    background: linear-gradient(135deg, var(--gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;              /* малку поголем текст */
    line-height: 1.9;
    color: var(--text-main);
    letter-spacing: 0.02em;
}
.about-text {
    position: relative;
    padding-left: 20px;
}



.about-text .red-line {
    width: 120px;
    height: 4px;
    margin: 1.2rem 0 2.5rem;
    background: linear-gradient(90deg, var(--gold), transparent);
    box-shadow: 0 0 25px var(--gold-soft);
}


.intro-text {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.6rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0a 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px var(--gold-soft);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.9;
}

/* WHY TRAIN WITH ME */
.why-train {
    padding: 150px 5%;
    background: var(--bg-main);
    color: var(--text-main);
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title-center {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.red-line-center {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 2rem;
    box-shadow: 0 0 20px var(--gold-soft);
}

.why-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.02em;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.why-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0a 100%);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
     display: flex;
    flex-direction: column;
    min-height: 260px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px var(--gold-soft);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--gold-soft));
}
.why-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: #fff;
    letter-spacing: 0.02em;
}


.why-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
  
}
.why-card--results {
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 18px 55px rgba(212,175,55,0.10);
}

.why-card--results::before {
    opacity: 1; /* да има суптилен glow */
}



/* HOW IT WORKS */
/* HOW IT WORKS */
.how-it-works {
  padding: 150px 5%;
  background: var(--bg-section);
  color: var(--text-main);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  margin-top: 4.2rem;
}

/* 2 cards per row */
.step-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 2.2rem;
  width: 100%;
  max-width: 1050px;
}

/* Connector between rows (clean, premium) */
.step-connector {
  width: 100%;
  max-width: 1050px;
  height: 22px;
  position: relative;
  opacity: 0.85;
}

.step-connector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 22px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 18px var(--gold-soft);
}

.step-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 18px var(--gold-soft);
}

/* Card */
.step-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0a 100%);
  padding: 2.4rem 2.2rem;
  border-radius: 18px;
  text-align: left;

  box-shadow: 0 12px 34px rgba(0,0,0,0.75);
  border: 1px solid rgba(212, 175, 55, 0.12);

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;

  min-height: 240px;
  display: flex;
  flex-direction: column;
}

/* Subtle glow on hover (no big circle) */
.step-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 10%, rgba(212,175,55,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.25);
}

/* Step number badge */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
  color: #000;
  border-radius: 16px;              /* modern badge (не круг) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 10px 26px var(--gold-soft);
  margin-bottom: 1.4rem;
}

/* Title */
.step-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Text */
.step-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-top: auto; /* држи конзистентен layout */
}

/* Responsive */
@media (max-width: 900px) {
  .step-wrapper {
    grid-template-columns: 1fr;
  }
  .step-connector {
    height: 18px;
  }
  .step-connector::before {
    height: 18px;
  }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 150px 5%;
  background: var(--bg-main);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: -200px;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08), transparent 55%),
              radial-gradient(circle at 80% 60%, rgba(212,175,55,0.05), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-wrapper {
  position: relative;
  margin: 4.5rem auto 3rem;
  max-width: 1300px;
  min-height: 560px;
}

/* Slides */
.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

/* Card */
.testimonial-card {
  background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(10,10,10,0.92) 100%);
  border-radius: 22px;
  padding: 1.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  min-height: 520px;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.22);
  box-shadow: 0 28px 80px rgba(212,175,55,0.10);
}

/* Image */
.testimonial-image {
  position: relative;
  margin-bottom: 1.35rem;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top; 
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.88) contrast(1.05);
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.07);
  filter: brightness(0.95) contrast(1.08);
}
/* .testimonial-image img.img-contain {
  object-fit: contain;     
  background: #000;       
} */ 
 /* mecinovik cela slika*/

/* soft cinematic overlay on image */
.testimonial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* Quote icon -> smaller, cleaner (no huge bubble) */
.quote-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,0.92);
  color: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(212,175,55,0.20);
  z-index: 2;
}

/* Text */
.testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
  font-style: italic;
  padding: 0;
  border: 0;
  flex: 1;
}

/* little quote accent line (subtle) */
.testimonial-quote::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 0.9rem;
  opacity: 0.9;
  box-shadow: 0 0 16px var(--gold-soft);
}

/* Author */
.testimonial-author h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.testimonial-author span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 0.7rem;
}

.rating {
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.testimonial-dots .dot {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-dots .dot:hover {
  transform: scale(1.08);
  background: rgba(212,175,55,0.22);
}

.testimonial-dots .dot.active {
  background: rgba(212,175,55,0.95);
  box-shadow: 0 0 22px rgba(212,175,55,0.25);
}

/* Responsive */
@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-wrapper {
    min-height: 1080px;
  }
}




/* FOOTER CTA */
.footer-cta{
  background: var(--bg-card);
  padding: 140px 6% 60px;
  color: var(--text-main);
}

.footer-container{
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* TEXT */
.footer-title{
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.footer-intro{
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* FORM */
.footer-form-wrapper{
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-form{
  background: linear-gradient(135deg, var(--bg-section), #050505);
  padding: 2.8rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid rgba(212,175,55,.12);
  box-shadow: 0 20px 40px rgba(0,0,0,.8);
}

.contact-form input{
  padding: 1rem 1.4rem;
  background: #000;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-main);
  font-size: 1rem;
}

.contact-form input::placeholder{
  color: var(--text-muted);
}

.contact-form input:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-soft);
}

.cta-button{
  margin-top: .5rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--gold), #f4d03f);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 10px 30px var(--gold-soft);
}

.cta-button:hover{
  transform: translateY(-3px);
}

/* SUCCESS / ERROR */
.form-success,
.form-error{
  display: none;
  text-align: center;
  font-size: .95rem;
  margin-top: .3rem;
}
.form-success{ color: #8fe28f; }
.form-error{ color: #ff9a9a; }

/* SOCIALS */
.footer-socials{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.form-socials a,
.footer-socials a {
  text-decoration: none !important;
}

.social-link{
  width: 50px;
  height: 50px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.3rem;
  border: 1px solid rgba(212,175,55,.15);
  transition: .3s;
}

.social-link:hover{
  background: var(--gold);
  color: #000;
  transform: translateY(-5px) scale(1.1);
}

/* BOTTOM */
.footer-bottom{
  margin-top: 4rem;
  text-align: center;
  font-size: .9rem;
  opacity: .6;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* TABLETS (до 980px) */
@media (max-width: 980px){
  /* HERO */
  .hero-text{
    left: 5%;
    max-width: 90%;
  }
  
  .hero-text h1{
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }
  
  .hero-images{
    gap: 12px;
  }
  
  /* ABOUT */
  .about-content{
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-stats{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title{
    font-size: 3.2rem;
  }
  
  /* WHY TRAIN */
  .why-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title-center{
    font-size: 3rem;
  }
}

/* MOBILE (до 640px) */
@media (max-width: 640px){
  /* GENERAL */
  section{
    padding: 80px 5% !important;
  }
  
  /* HERO */
  .hero{
    height: 90vh;
  }
  
  .hero-images{
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-img{
    min-height: 30vh;
    background-size: cover !important;
    background-position: center center !important;
    transform: scale(1) !important;
  }
  
  /* Специфично за секоја слика на мобилен */
  .hero-img.left{
    background-position: center 30% !important;
  }
  
  .hero-img.center{
    background-position: center 25% !important;
  }
  
  .hero-img.right{
    background-position: center 35% !important;
  }
  
  .hero-text{
    left: 5%;
    right: 5%;
    top: auto;
    bottom: 10%;
    transform: none;
  }
  
  .hero-text h1{
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    margin-bottom: 0.6rem;
  }
  
  .hero-text p{
    font-size: 0.95rem;
  }
  
  .hero-text .subtitle{
    font-size: 0.9rem;
  }
  
  .red-line{
    width: 80px;
    height: 3px;
    margin: 0.8rem 0;
  }
  
  /* ABOUT */
  .about-section{
    padding: 80px 5%;
  }
  
  .section-title{
    font-size: 2.5rem;
  }
  
  .about-text{
    font-size: 1rem;
    padding-left: 0;
  }
  
  .intro-text{
    font-size: 1.15rem;
  }
  
  .about-stats{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-card{
    padding: 1.8rem 1.3rem;
  }
  
  .stat-number{
    font-size: 2.5rem;
  }
  
  /* WHY TRAIN */
  .why-train{
    padding: 80px 5%;
  }
  
  .section-title-center{
    font-size: 2.4rem;
  }
  
  .why-subtitle{
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
  
  .red-line-center{
    width: 70px;
    height: 3px;
  }
  
  .why-grid{
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .why-card{
    padding: 2rem;
    min-height: auto;
  }
  
  .why-icon{
    font-size: 2.8rem;
  }
  
  .why-card h3{
    font-size: 1.35rem;
  }
  
  .why-card p{
    font-size: 0.98rem;
  }
  
  /* HOW IT WORKS */
  .how-it-works{
    padding: 80px 5%;
  }
  
  .steps-grid{
    gap: 1.8rem;
    margin-top: 3rem;
  }
  
  .step-wrapper{
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .step-card{
    padding: 2rem 1.8rem;
    min-height: auto;
  }
  
  .step-number{
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .step-card h3{
    font-size: 1.35rem;
  }
  
  .step-card p{
    font-size: 0.98rem;
  }
  
  .step-connector{
    height: 16px;
  }
  
  .step-connector::before{
    height: 16px;
  }
  
  /* TESTIMONIALS */
  .testimonials-section{
    padding: 80px 5%;
  }
  
  .testimonials-wrapper{
    margin: 3rem auto 2rem;
    min-height: auto;
  }
  
  .testimonial-grid{
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .testimonial-card{
    padding: 1.6rem;
    min-height: auto;
  }
  
  .testimonial-image img{
    height: 220px;
  }
  
  .quote-icon{
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    top: 12px;
    right: 12px;
  }
  
  .testimonial-quote{
    font-size: 0.98rem;
  }
  
  .testimonial-quote::before{
    width: 45px;
    height: 2.5px;
  }
  
  .testimonial-author h4{
    font-size: 1.1rem;
  }
  
  .testimonial-author span{
    font-size: 0.88rem;
  }
  
  .rating{
    font-size: 0.95rem;
  }
  
  .testimonial-dots{
    gap: 0.7rem;
    margin-top: 2rem;
  }
  
  .testimonial-dots .dot{
    width: 28px;
    height: 5px;
  }
  
  /* FOOTER */
  .footer-cta{
    padding: 80px 5% 50px;
  }
  
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-title{
    font-size: 2rem;
  }
  
  .footer-intro{
    font-size: 1rem;
  }
  
  .contact-form{
    padding: 2rem;
  }
  
  .contact-form input{
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .cta-button{
    padding: 1rem;
    font-size: 1rem;
  }
  
  .footer-socials{
    gap: 1.2rem;
  }
  
  .social-link{
    width: 45px;
    height: 45px;
    font-size: 1.15rem;
  }
  
  .footer-bottom{
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
  }
}

/* SMALL MOBILE (до 480px) */
@media (max-width: 480px){
  .hero-text h1{
    font-size: clamp(1.9rem, 12vw, 2.8rem);
  }
  
  .section-title{
    font-size: 2rem;
  }
  
  .section-title-center{
    font-size: 2rem;
  }
  
  .about-stats{
    gap: 1.2rem;
  }
  
  .stat-card{
    padding: 1.5rem 1rem;
  }
  
  .stat-number{
    font-size: 2.2rem;
  }
  
  .stat-label{
    font-size: 0.88rem;
  }
  
  .why-card{
    padding: 1.8rem;
  }
  
  .step-card{
    padding: 1.8rem 1.5rem;
  }
  
  .footer-title{
    font-size: 1.8rem;
  }
  
  .contact-form{
    padding: 1.8rem;
  }
}