body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif !important;
}
.press-title{
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: .6rem;
}

.press-date{
  color:#666;
  font-size:.9rem;
}

/* ===== ARROWS ===== */
.press-arrows{
  display:flex;
  gap:10px;
}

.press-arrows button{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid #d6d6d6;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s;
}

.press-arrows button:hover{
  background:#000;
  color:#fff;
}

.press-arrows i{
  font-size:14px;
}
/* ===== HEADER BASE ===== */
.vinfast-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;

  background: transparent;
  transition: all 0.4s ease;
}

/* ===== SCROLL STATE ===== */
.vinfast-header.scrolled {
  background: #1464FA !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
 /*=== Header Left===*/
.header-left {
  display: flex;
  gap: 24px;
}

.header-left .model {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  padding-bottom: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-left .model:hover {
  color: #fff;
}

.header-left .model.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}

/* ===== CENTER LOGO ===== */
.header-center img {
  height: 200px;
}

/* ===== RIGHT CALL BUTTON ===== */
.call-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #1464FA;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  transform: scale(1.08);
  background: #e6f3ec;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .vinfast-header {
    padding: 0 20px;
    height: 70px;
  }

  .header-left .model {
    font-size: 16px;
  }

  .header-center img {
    height: 100px;
  }

  .call-btn {
    width: 42px;
    height: 42px;
  }
}

.hero-slider {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

/* Hide mobile / desktop properly */
.desktop-slider { display: block; }
.mobile-slider { display: none; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 1.4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ================= MOBILE ================= */
@media (max-width: 767px) {
  .marquee-item {
    font-size: 15px;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-btn {
    padding: 14px 28px;
  }
  .marquee-track {
  animation: marquee 5s linear infinite;
}
.cta-section h2 {
  font-size:22px;  
}
.cta-section p {
  font-size:16px;
}
.hero-arrow {
    width: 36px;
    height: 36px;
  }
   .desktop-slider { display: none; }
  .mobile-slider { display: block; height: 70vh; }
}


/* ================= MARQUEE ================= */
.offers-marquee {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 50px;
  padding: 14px 0;
  animation: marquee 10s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1464FA;
}

.marquee-item i {
  font-size: 16px;
}

/* Smooth scrolling */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: #231f20;
  padding: 70px 0;
  color: #fff;
}
a.btn.cta-btn {
    background-color: white;
    padding: 10px;
}
.cta-section h2 {
  font-family: "Manrope", sans-serif !important;
  font-weight: 800;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* CTA Button */
.cta-btn {
  background: #ffffff;
  color: #1464FA;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #eaf6f0;
  transform: translateY(-2px);
  color: black !important;
}

/* ================= EV TABS SECTION ================= */

.ev-model-section {
  padding: 80px 0;
  background: #f7f8f7;
  font-family: "Manrope", sans-serif;
}

/* Heading */
.ev-subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  color: #777;
}

.ev-title {
 font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 6px;
}

/* Card */
.ev-model-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* IMAGE SIDE */
.ev-model-img {
  flex: 0 0 45%;
  background: #e9e9e9;
  padding: 0;
  overflow: hidden;
}

.ev-model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;     
  display: block;
}

/* CONTENT SIDE */
.ev-model-content {
  flex: 1;
  padding: 36px;
}

.ev-model-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TAGS */
.ev-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* FIX OVERFLOW */
  gap: 10px 12px;
  margin-bottom: 26px;
  max-width: 100%;
}

.ev-tags span {
  border: 1px solid #dcdcdc;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 13px;
  color: #333;
  background: #fff;
  text-align: center;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BUTTON */
.ev-btn {
  background: #1464FA;
  color: #fff;
  padding: 11px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ev-btn:hover {
  background: #1464FA;
  transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 992px) {
  .ev-model-card {
    flex-direction: column;
  }

  .ev-model-img {
    height: 260px;
  }

  .ev-model-content {
    text-align: center;
  }

  .ev-tags {
    justify-items: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .ev-model-img {
    height: 220px;
  }

  .ev-tags {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.brochure-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* CARD */
.brochure-card {
  background-color: #1464FA;
  border-radius: 18px;
  max-width: 1200px;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

/* IMAGE */
.brochure-img img {
  width: 450px;
  max-width: 100%;
}

.brochure-content h2 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 12px;
}

.brochure-content p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* CTA */
.brochure-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Smaller button version */
.small-btn {
  padding: 10px 20px;
  font-size: 14px;
}

.whatsapp-btn i {
  background: #1464FA;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
/* Tablet */
@media (max-width: 992px) {
  .brochure-card {
    flex-direction: column;
    text-align: center;
    padding: 32px;
    gap: 28px;
  }

  .brochure-img img {
    width: 300px;
  }

  .brochure-content h2 {
    font-size: 22px;
  }

  .brochure-content p {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brochure-section {
    padding: 40px 15px;
  }

  .brochure-card {
    padding: 26px 20px;
    gap: 22px;
    border-radius: 16px;
  }

  .brochure-img img {
    width: 220px;
  }

  .brochure-content h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .brochure-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .brochure-cta {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .small-btn {
    padding: 12px 18px;
    font-size: 13.5px;
  }

  .whatsapp-btn i {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
/* ===== OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* ===== POPUP BOX ===== */
.popup-box {
  position: relative;
  max-width: 780px;
  width: 100%;
  background: #fff;
  overflow: hidden;
  text-align: center;
  animation: popupScale 0.4s ease;
}

/* Image */
.popup-box img {
  width: 100%;
  display: block;
}

/* ===== POPUP EQUIRY BUTTON ===== */
.popup-enquiry-btn {
  width: 100%;
  background: #d9cc18;           
  color: #ffffff;
  border: none;
  border-radius: 0;               
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover */
.popup-enquiry-btn:hover {
  background: #c7bb10;
}

/* Mobile */
@media (max-width: 768px) {
  .popup-enquiry-btn {
    font-size: 16px;
    padding: 14px 0;
  }
}


/* Close */
.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* Animation */
@keyframes popupScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .popup-box {
    max-width: 92%;
  }

  .popup-btn {
    font-size: 15px;
    padding: 12px;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: #ffffff;
  /*padding: 10px 20px;*/
  font-family: "Inter", sans-serif;
  padding-top:40px;
}

/* Heading */
.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
 font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 6px;
}

.features-header p {
  color: #555;
  font-size: 15px;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.feature-card {
  background: #f9f9f9;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-text {
  padding: 18px;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 13px;
  color: #666;
}

/* CTA */
.features-cta {
  text-align: center;
  margin-top: 50px;
}

/* ===== RESPONSIVE ===== */
/* Tablet */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 200px;
  }

  .features-header h2 {
    letter-spacing: 2px;
    font-size:25px;
  }
}
/* ===== STICKY BOTTOM CTA ===== */
.bottom-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
}


.cta-pill {
  background: #ffffff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  pointer-events: auto;
}

/* CTA items */
.cta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  white-space: nowrap;
}

.cta-item i {
  font-size: 16px;
}

/* Divider */
.divider {
  width: 1px;
  height: 22px;
  background: #ddd;
  margin: 0 4px;
}

/* ===== MOBILE PERFECT MATCH ===== */
@media (max-width: 768px) {

  .bottom-cta {
    padding: 0 10px;
  }

  .cta-pill {
    width: 100%;
    border-radius: 18px;
    padding: 6px;
  }

  .divider {
    display: none;
  }

  .cta-item {
    flex: 1;
    justify-content: center;
    padding: 8px 0;
    font-size: 10px;
  }

  .cta-item i {
    font-size: 8px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .cta-item {
    font-size: 12.5px;
  }
}

/* ===== SECTION ===== */
.exceptional-section {
  color: black;
  font-family: Inter, sans-serif;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-top: 20px;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}

/* ===== HEADER ===== */
.exceptional-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;

  /* safe padding for text */
  padding: 0 24px;
}

.exceptional-header h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Tabs */
.exceptional-tabs {
  display: flex;
  gap: 20px;
}

.exceptional-tabs .tab {
  background: none;
  border: none;
  color: #777;
  font-size: 13px;
  cursor: pointer;
  padding-bottom: 4px;
}

/* ACTIVE = BLACK */
.exceptional-tabs .tab.active {
  color: #000;
 
}
.exceptional-tabs .tab:hover {
     background:black; 
}
/* ===== SLIDER ===== */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Slider track */
.slider {
  display: none;
  flex-wrap: nowrap;
 overflow-x: scroll;
 scroll-behavior: smooth;

  /*EDGE-TO-EDGE FIX */
  padding-left: 24px;
}

.slider.active {
  display: flex;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */
.card {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 28px;
  box-sizing: border-box;
  background: transparent;
 border: none !important;
}

/* last card gap remove */
.card:last-child {
  padding-right: 0;
}

.card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  border-radius: 2px;
}

.card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ===== ARROWS ===== */
.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 24px;
  padding: 0 24px; /* align with header */
}

.arrow {
  background: none;
  border: none;
  color: #333;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.arrow:hover {
  color: #1464FA;
}

/* ===== TABLET – 2 CARDS ===== */
@media (max-width: 992px) {
  .card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .card img {
    height: 300px;
  }

  .slider {
    padding-left: 20px;
  }
}

/* ===== MOBILE – 1 CARD ===== */
@media (max-width: 576px) {
  .exceptional-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
.exceptional-section{padding-left:20px;padding-right:10px;}
  .card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .card img {
    height: 200px;
  }

  .slider {
    padding-left: 12px;
  }
}

/* Section */
.chargein-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #000;
}

/* Wrapper */
.chargein-wrapper {
  display: flex;
  width: 100%;
  min-height: 520px;
}

/* Left Image */
.chargein-image {
  flex: 1;
  position: relative;
}

.chargein-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content Panel */
.chargein-content {
  flex: 1;
  background: linear-gradient(180deg, #1c1c1c, #0e0e0e);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

/* Heading */
.chargein-content h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.chargein-content h2 span {
  color: #f5a623; /* dot color */
}

/* Sub text */
.chargein-content small {
  font-size: 13px;
  letter-spacing: 2px;
  color: #b5b5b5;
  margin-bottom: 36px;
}

/* Description */
.chargein-content p {
  font-size: 20px;
  line-height: 1.4;
  color: #eaeaea;
  margin-bottom: 40px;
}

/* Button */
.chargein-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  width: fit-content;
  transition: all 0.3s ease;
}

.chargein-btn span {
  font-size: 16px;
}

.chargein-btn:hover {
  background: #1464FA;
  border-color: #1464FA;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .chargein-wrapper {
    flex-direction: column;
  }

  .chargein-content {
    padding: 50px 30px;
    text-align: center;
    align-items: center;
  }

  .chargein-content h2 {
    font-size: 34px;
  }

  .chargein-content p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .chargein-content {
    padding: 40px 20px;
  }

  .chargein-content h2 {
    font-size: 28px;
  }

  .chargein-content p {
    font-size: 16px;
  }
}
/* ================= CTA SECTION ================= */
.contact-cta-section {
  position: relative;
  background: url("images/service-car.webp"); 
  padding: 220px 0 220px;
  margin-top: 60px;
}

/* ================= OVERLAP CARD ================= */
.contact-form-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 5;
  margin-bottom:30px;
}

.contact-card {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* ================= LEFT INFO ================= */
.contact-info {
  background: #1464FA;
  color: #fff;
  padding: 60px 40px;
  height: 100%;
}

.contact-sub {
  font-size: 12px;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 18px 0 32px;
  line-height: 1.3;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-info h6 {
  margin-top: 30px;
  font-weight: 700;
}

/* ================= FORM ================= */
.contact-form {
  padding: 60px 50px;
}

.contact-form h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 14px;
}

.contact-form input:focus {
  outline: none;
  border-color: #1464FA;
  box-shadow: 0 0 0 2px rgba(25,112,72,0.15);
}

/* Radio */
.radio-group {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  font-size: 14px;
}

/* Button */
.send-btn {
  background: #1464FA;
  color: #fff;
  padding: 13px 36px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background: #1464FA;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .contact-cta-section {
    padding: 90px 0 180px;
  }

  .contact-cta-head h2 {
    font-size: 32px;
  }

  .contact-form-wrapper {
    margin-top: -90px;
  }

  .contact-form {
    padding: 40px 30px;
  }

  .contact-info {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 70px 0 160px;
        margin-top: -166px;
    }

  .contact-cta-head h2 {
    font-size: 26px;
  }

  .contact-cta-head p {
    font-size: 16px;
  }

  .contact-card {
    border-radius: 14px;
  }

  .contact-info {
    text-align: center;
     padding: 32px 22px;
  }

    .contact-info h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }
 .contact-item i {
    font-size: 16px;
    margin-top: 2px;
  }

  .contact-info h6 {
    margin-top: 22px;
    font-size: 14px;
  }

 /* FORM */
  .contact-form {
    padding: 28px 20px;
  }

  .contact-form h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }
.radio-group {
  gap: 12px;

}

/* EACH RADIO ITEM */
.radio-group label {
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

/* RADIO INPUT */
.radio-group input[type="radio"] {
  margin: 0;
  transform: scale(1.05);
}


  .send-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact-info h3 {
    font-size: 22px;
  }

  .contact-item {
    font-size: 13.5px;
  }
}


/* ===== SERVICE HIGHLIGHTS ===== */
.service-highlights {
  background: radial-gradient(circle at top, #1b1b1d 0%, #0c0d10 70%);
  color: #fff;
  padding: 90px 0 70px;
  font-family: "Manrope", sans-serif;
}

.service-highlights .container {
  max-width: 1200px;
  padding: 0 24px;
}

/* Heading */
.service-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

/* Items */
.service-items {
  display: flex;
  gap: 70px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3a3a3d, #2a2a2d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 22px;
  color: #fff;
}

.service-item span {
  font-size: 16px;
  font-weight: 500;
}

/* Sub text */
.service-subtext {
  font-size: 16px;
  color: #cfcfcf;
  margin: 28px 0;
}

/* Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 40px;
  border: 1px solid #ffffff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.service-btn:hover {
  background: #1464FA;
  border-color: #1464FA;
}

/* Divider */
.service-divider {
  margin-top: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .service-items {
    gap: 40px;
  }

  .service-title {
    font-size: 24px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .service-highlights {
    padding: 60px 0 50px;
  }

  .service-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .service-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .service-item {
    width: 100%;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-icon i {
    font-size: 20px;
  }

  .service-item span {
    font-size: 15px;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service-divider {
    margin-top: 40px;
  }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {
  .service-title {
    font-size: 20px;
  }

  .service-subtext {
    font-size: 14px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: "Manrope", sans-serif;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* Title */
.faq-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e3e3e3;
  padding: 22px 0;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

/* Icon */
.faq-icon {
  font-size: 26px;
  font-weight: 300;
  color: #1464FA;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 900px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}





.exceptional-tabs {
  display: flex;
  gap: 14px;
}

.exceptional-tabs .tab {
  background: transparent;
  border: 2px solid #231f20;   /* green border */
  color: #231f20;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ACTIVE TAB */
.exceptional-tabs .tab.active {
  background: #231f20;        /* green fill */
  color: #ffffff;
}

/* Hover effect */
.exceptional-tabs .tab:hover {
  background: rgba(22, 163, 74, 0.1);
}








