
.testimonial-card{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:70px 30px 30px;
    box-shadow:
        0 20px 40px rgba(0,0,0,.06),
        0 5px 15px rgba(0,0,0,.04);
    transition:.4s ease;
    overflow:hidden;
    border:1px solid rgba(255,107,0,.08);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0,0,0,.1),
        0 10px 20px rgba(255,107,0,.08);
}

.client-image{
    position:absolute;
    top:5px;
    left:20px;
}

.client-image img{
    width:80px;
    height:80px;
    max-width: 80px;  /* Forces Firefox to respect the limit */
    max-height: 80px; /* Forces Firefox to respect the limit */
    flex-shrink: 0;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    right:20px;
    top:15px;
    font-size:90px;
    color:#ff6b00;
    opacity:.08;
    font-family:serif;
}

.testimonial-text{
    font-size:15px;
    line-height:1.9;
    color:#555;
    padding-top:50px;
    margin-bottom:30px;
}

.testimonial-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.testimonial-footer h4{
    margin:0;
    color:#111;
    font-size:18px;
    font-weight:700;
}

.testimonial-footer span{
    color:#777;
    font-size:14px;
}

.rating{
    color:#ffb800;
    font-size:18px;
    letter-spacing:2px;
}






.hero-slider {
    position: relative;
    overflow: hidden;
    
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    
        opacity: 0;
        transform: translateX(100%);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    }
    
    .hero-slide.active {
        opacity: 1;
        transform: translateX(0);
    }
    
    .hero-slide.prev {
        opacity: 0;
        transform: translateX(-100%);
    }

    .hero-slider{
        position:relative;
        height:100vh;
        overflow:hidden;
    }
    
    .hero-slide{
        position:absolute;
        width:100%;
        height:100%;
        top:0;
        left:0;
        opacity:1;
        visibility:hidden;
        transition:all 1.5s ease;
        display:flex;
        align-items:center;
    
        background-size:cover;
        background-position:center;
    }
    
    .hero-slide.active{
        opacity:1;
        visibility:visible;
    }
    
    .hero-slide:nth-child(1){
        background:url('/images/slide1.jpeg') center/cover;
    }
    
    .hero-slide:nth-child(2){
        background:url('/images/slide2.jpeg') center/cover;
    }
    
    .hero-slide:nth-child(3){
        background:url('/images/education.jpeg') center/cover;
    }
    
    .hero-slide:nth-child(4){
        background:url('/images/tourisim.jpg') center/cover;
    }
    
    .hero-slide::before{
        content:'';
        position:absolute;
        inset:0;
        background:rgba(0,0,0.55,0.55);
        opacity: 1;
    }
    
    .hero-inner{
        position:relative;
        z-index:2;
        width:100%;
    }





  :root {
    --orange: #FF6B00;
    --orange-dark: #d45a00;
    --orange-light: #ff8c33;
    --gray: #888888;
    --gray-dark: #555555;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --black: #000000;
    --slide-speed: 2s; /* Change this value */
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Raleway', sans-serif; color: var(--black); background: var(--white); }


.testimonial-container{
    position:relative;
    margin-top:50px;
     height: 450px;
    
}

.testimonial-wrapper{
    overflow:hidden;
   
    padding-top: 20px;
}

.testimonial-track{
    display:flex;
   
    gap:25px;
    transition:transform 1.5s ease;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    flex:0 0 calc(33.333% - 17px);
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    font-size:15px;
    cursor:pointer;
    z-index:10;
}

.slider-btn:hover{
    background:#e55f00;
}

.prev{
    left:-25px;
}

.next{
    right:-25px;
}

.stars{
    color:#ffb400;
    font-size:20px;
    margin-bottom:15px;
}

.testimonial-text{
    margin-bottom:25px;
    margin-top: 10px;
    line-height:1.7;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.author-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.author-name{
    font-weight:700;
}

.author-dest{
    color:#666;
    font-size:14px;
}

/* Tablet */

@media(max-width:992px){

    .testimonial-card{
        flex:0 0 calc(50% - 13px);
    }

}

/* Mobile */

@media(max-width:768px){

    .testimonial-card{
        flex:0 0 100%;
    }

    .prev{
        left:5px;
    }

    .next{
        right:5px;
    }

}






  .popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 15% auto;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.popup-content button {
    margin-top: 15px;
    padding: 10px 25px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
  /* NAVBAR */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
  }
  .nav-logo { height: 70px; }
  .nav-links { display: flex; gap: 35px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--gray-dark);
    font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em;
    text-transform: uppercase; transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
   /* background: var(--orange);*/
    color: white;
    padding: 11px 26px; border-radius: 50px;
    background: #eb9809;
    border: 3px solid ;
    border:linear-gradient(90deg,rgba(235, 88, 9, 1) 0%, rgba(242, 169, 41, 1) 50%, rgba(235, 88, 9, 1) 100%);
   /*  background: linear-gradient(90deg,rgba(235, 88, 9, 1) 0%, rgba(242, 169, 41, 1) 50%, rgba(235, 88, 9, 1) 100%); */
    background-position: left;
    cursor: pointer;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em;
    text-decoration: none; transition: all 0.3s;
    text-transform: uppercase;
  }
  .nav-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,107,0,0.4);
        background-position: right;
        transition-duration: 1s;
      
  }
  .nav-cta:active {
  transform: scale(0.80);
  transition-duration: 0.2s;
}

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 5% 60px;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: var(--orange);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.08;
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 60px; }
  .hero-content { flex: 1; }
  .hero-badge {
    display: inline-block;
    background: var(--orange); color: white;
    padding: 6px 18px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 24px;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--white); line-height: 1.15;
    margin-bottom: 20px; font-weight: 900;
  }
  .hero-title span { color: var(--orange); }
  .hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.7);
    line-height: 1.8; margin-bottom: 40px; max-width: 520px;
    font-weight: 400;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange); color: white;
    padding: 15px 35px; border-radius: 50px;
    font-weight: 700; font-size: 0.92rem;
    text-decoration: none; transition: all 0.3s;
    letter-spacing: 0.03em;
  }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,107,0,0.5); }
  .btn-outline {
    background: transparent; color: white;
    padding: 14px 35px; border-radius: 50px;
    font-weight: 600; font-size: 0.92rem;
    text-decoration: none; transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4);
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
  .hero-visual { flex: 0 0 420px; display: flex; justify-content: center; }
  .hero-logo-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    text-align: center;
  }
  .hero-logo-wrap img { width: 280px; filter: drop-shadow(0 10px 30px rgba(255,107,0,0.3)); }

  /* STATS */
  .stats-bar {
    background: var(--orange);
    padding: 30px 5%;
    display: flex; justify-content: center; gap: 0;
  }
  .stat-item {
    flex: 1; max-width: 220px;
    text-align: center; color: white;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; display: block; }
  .stat-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.88; }

  /* SECTION BASE */
  .section { padding: 10px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    color: var(--orange); font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--black);
    line-height: 1.3; margin-bottom: 16px;
  }
  .section-title span { color: var(--orange); }
  .section-desc { color: var(--gray); line-height: 1.8; font-size: 1rem; max-width: 600px; }

  /* ABOUT */
  .about { background: var(--off-white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .about-visual { position: relative; }
  .about-img-box {
    /*background: white;*/
    background: var(--off-white);
      border-radius: 20px;
         padding: 50px 40px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
   /* padding-right:80px;*/
  }
  .about-img-box img { height:400px}
  .about-badge {
    position: absolute; top: -15px; right: -15px;
    background: var(--orange); color: white;
    border-radius: 16px; padding: 20px;
    text-align: center; box-shadow: 0 8px 25px rgba(255,107,0,0.4);
  }
  .about-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; display: block; }
  .about-badge-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
  .about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .about-point { display: flex; align-items: flex-start; gap: 12px; }
  .about-point-icon {
    background: var(--orange); color: white;
    border-radius: 50%; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
  }
  .about-point p { color: var(--gray-dark); font-size: 0.95rem; line-height: 1.6; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
  .service-card {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.35s; border: 2px solid transparent;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: var(--orange);
    transform: scaleX(0); transition: transform 0.35s;
  }
  .service-card:hover { transform: translateY(-8px); border-color: rgba(255,107,0,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 60px; height: 60px;
    background: rgba(255,107,0,0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 22px;
  }
  .service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
  .service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

  /* COUNTRIES */
  .countries { background: var(--off-white); }
  
  .countries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 50px; }
  .country-card {
    background: white; border-radius: 16px;
    padding: 28px 20px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s; cursor: default;
  }
  .country-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(255,107,0,0.15); }
  .country-flag { font-size: 2.8rem; margin-bottom: 10px; display: block; font-size: 40px; }
  
  .country-card h4 { font-weight: 700; font-size: 0.88rem; color: var(--black); margin-bottom: 5px; }
  .country-card p { color: var(--gray); font-size: 0.75rem; }

  /* PROCESS */
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 55px; position: relative; }
  .process-steps::before {
    content: '';
    position: absolute; top: 32px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(to right, var(--orange), rgba(255,107,0,0.2));
  }
  .process-step { text-align: center; padding: 0 15px; position: relative; }
  .step-num {
    width: 64px; height: 64px;
    background: var(--orange); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;
    margin: 0 auto 20px; position: relative; z-index: 1;
    box-shadow: 0 5px 20px rgba(255,107,0,0.4);
  }
  .process-step h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
  .process-step p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

  /* WHY US */
  .why-us { background: var(--black); }
  .why-us .section-title { color: white; }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 30px 28px;
    transition: all 0.3s;
  }
  .why-card:hover { background: rgba(255,107,0,0.08); border-color: rgba(255,107,0,0.3); }
  .why-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .why-icon {
    width: 44px; height: 44px; background: var(--orange);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  }
  .why-card h3 { color: white; font-size: 1.05rem; font-weight: 700; }
  .why-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

  /* TESTIMONIALS */
  .testimonials { background: var(--off-white); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
  .testimonial-card {
    background: white; border-radius: 20px; padding: 32px 28px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    position: relative;
  }
  .testimonial-card::before {
    content: '"'; position: absolute; top: 18px; right: 24px;
    font-family: 'Playfair Display', serif; font-size: 5rem;
    color: rgba(255,107,0,0.12); line-height: 1;
  }
  .stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 14px; }
  .testimonial-text { color: var(--gray-dark); font-size: 0.92rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 0.95rem;
  }
  .author-name { font-weight: 700; font-size: 0.9rem; color: var(--black); }
  .author-dest { color: var(--orange); font-size: 0.78rem; font-weight: 600; }

  /* CONTACT */
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info { }
  .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .contact-item-icon {
    width: 48px; height: 48px; background: rgba(255,107,0,0.1);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  }
  .contact-item-text h4 { font-weight: 700; color: var(--black); font-size: 0.92rem; margin-bottom: 4px; }
  .contact-item-text p, .contact-item-text a {
    color: var(--gray); font-size: 0.9rem; line-height: 1.5;
    text-decoration: none; transition: color 0.2s;
  }
  .contact-item-text a:hover { color: var(--orange); }
  .contact-form { background: var(--off-white); border-radius: 24px; padding: 40px 36px; }
  .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; color: var(--black); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 2px solid #e8e8e8; border-radius: 10px;
    font-family: 'Raleway', sans-serif; font-size: 0.92rem;
    color: var(--black); background: white; transition: all 0.3s;
    outline: none; appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,0.08); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%; background: var(--orange); color: white;
    padding: 15px; border: none; border-radius: 50px;
    font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.4); }

  /* FOOTER */
  footer {
    background-color: var(--black);
    background-image: url('/images/bgfooter.png');
    background-repeat: no-repeat;
    color: rgba(255,255,255,0.6);
    padding: 60px 5% 30px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-brand img { height: 50px; margin-bottom: 18px;  }
  .footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
  .footer-col h4 {
    color: white; font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem;
  }
  .footer-bottom a { color: var(--orange); text-decoration: none; }

  /* MAP */
  .map-section { padding: 0; height: 250px; }
  .map-placeholder {
    height: 100%; background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px; color: white;
  }
  .map-placeholder .map-icon { font-size: 3rem; }
  .map-placeholder p { font-size: 1rem; color: rgba(255,255,255,0.7); }
  .map-placeholder a {
        display: inline-block; 
        background: var(--orange); 
        color: white;
        padding: 12px 8px; 
        border-radius: 50px; 
        text-decoration: none;
        font-weight: 700; 
        font-size: 0.9rem; 
        transition: all 0.3s;
  }
  .map-placeholder a:hover { background: var(--orange-dark); transform: translateY(-5px); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero-visual { flex: 0 0 320px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .countries-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-btns { justify-content: center; }
    .hero-visual { flex: 0 0 auto; width: 100%; }
    .hero-logo-wrap img { width: 200px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge { right: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stats-bar { flex-wrap: wrap; }
    .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
  }