* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Segoe UI, sans-serif;
}

body {
    background: #f8f8f8
}

/* ===== TOP HEADER ===== */
.top-header {
    background: #000;
    color: #fff;
    font-size: 14px;
}

.top-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* RIGHT SIDE */
.top-right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

/* GST STYLE */
.gst {
    font-size: 13px;
    color: #ccc;
}

.gst strong {
    color: #ff4d00;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .top-container {
        justify-content: center;
        text-align: center;
    }

    .top-right {
        justify-content: center;
    }
}

/* ===== MAIN HEADER ===== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo-orange {
    color: #ff4d00;
}

/* Nav */
.nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.nav a.active,
.nav a:hover {
    color: #ff4d00;
}

/* CTA */
.btn-primary {
    background: #ff4d00;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #222;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    z-index: 2000;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.close-btn {
    font-size: 32px;
    border: none;
    background: none;
    cursor: pointer;
}

.sidebar ul {
    list-style: none;
    padding: 20px;
}

.sidebar ul li {
    margin-bottom: 18px;
}

.sidebar ul a {
    text-decoration: none;
    color: #222;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    .nav,
    .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .top-container {
        justify-content: center;
        text-align: center;
    }
}

/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh;
    background: url("../image/hero-bg.jfif") center / cover no-repeat;
    position: relative;
    padding: 140px 0 180px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 0 0 40px 40px;
    z-index: 1;
}

/* Hero Content Wrapper */
.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Hero Text */
.hero-content {
    color: #fff;
    max-width: 820px;
}

.hero-tag {
    color: #ff4d00;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-content p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Hero Button */
.hero-btn {
    background: #ff4d00;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #e64500;
}


/* ================= BOOKING BOX ================= */
.booking-box {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: #ffffff;
    padding: 32px 36px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

/* Booking Form Container */
.booking-container {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

/* Booking Title */
.booking-title {
    font-size: 18px;
    font-weight: 700;
    min-width: 190px;
    line-height: 1.3;
    color: #111;
}

/* Booking Fields */
.booking-field {
    flex: 1;
    min-width: 200px;
}

.booking-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.booking-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: border 0.3s ease;
}

.booking-field input:focus {
    border-color: #ff4d00;
}

/* Booking Button */
.booking-btn {
    min-width: 150px;
}

.send-btn {
    width: 100%;
    background: #ff4d00;
    color: #ffffff;
    border: none;
    padding: 14px 0;
    border-radius: 35px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn:hover {
    background: #e64500;
}


/* ================= TABLET VIEW ================= */
@media (max-width: 991px) {

    .hero {
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .booking-box {
        position: relative;
        bottom: auto;
        margin-top: -60px;
        padding: 30px;
        z-index: 10;
    }

    .booking-title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
    }
}


/* ================= MOBILE VIEW ================= */
@media (max-width: 576px) {

    .hero {
        padding: 120px 0 40px;
        border-radius: 0 0 28px 28px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .booking-container {
        justify-content: center;
    }

    .booking-field {
        width: 100%;
        max-width: 340px;
    }

    .booking-btn {
        width: 100%;
        max-width: 220px;
        margin: 12px auto 0;
    }

    .send-btn {
        font-size: 15px;
        padding: 15px;
        box-shadow: 0 10px 22px rgba(255, 77, 0, 0.45);
    }
}




/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 20px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ===== IMAGES ===== */
.about-images {
    position: relative;
    flex: 1;
    min-height: 420px;
}

.about-images .img {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DESKTOP IMAGE SIZE (UNCHANGED) */
.img-1 {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
}

.img-2 {
    width: 260px;
    height: 260px;
    bottom: 0;
    left: 160px;
    border: 8px solid #fff;
}

/* DECOR */
.star-accent {
    position: absolute;
    right: 30px;
    top: 140px;
    font-size: 70px;
    color: #ff4d00;
}

.dot-accent {
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 18px;
    height: 18px;
    background: #0c1b2a;
    border-radius: 50%;
}

/* ===== CONTENT ===== */
.about-content {
    flex: 1;
}

.section-tag {
    color: #ff4d00;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    color: #555;
    max-width: 520px;
    margin-bottom: 35px;
}

/* FEATURES */
.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.about-feature .icon {
    min-width: 52px;
    height: 52px;
    background: #ffe8dd;
    color: #ff4d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* BUTTON */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff4d00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        min-height: 360px;
        margin-bottom: 40px;
    }

    .img-2 {
        left: 130px;
    }

    .about-feature {
        justify-content: center;
        text-align: left;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

    .about-section {
        padding: 70px 15px;
    }

    .about-images {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-images .img {
        position: static;
    }

    .img-1 {
        width: 220px;
        height: 220px;
    }

    .img-2 {
        width: 180px;
        height: 180px;
        border: 6px solid #fff;
    }

    .star-accent,
    .dot-accent {
        display: none;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-text {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===== CAR SECTION ===== */
.car-section {
  padding: 100px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  color: #555;
  font-size: 15px;
  max-width: 600px;
  margin: auto;
}

/* GRID */
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.car-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.car-card:hover {
  transform: translateY(-6px);
}

.car-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.car-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* META */
.car-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}

/* BUTTONS */
.car-actions {
  display: flex;
  gap: 8px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.whatsapp {
  background: #25d366 !important;
}
.whatsapp:hover{
    background: #1eb856 !important;
    color: white;
}

.enquiry {
  background: #111 !important;
}
.enquiry:hover{
     background: #131212 !important;
     color: white;
}

.call {
  background: #ff4d00 !important;
}

.call:hover{
      background: #c43c02 !important;
      color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .car-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}



/* ===== HOW IT WORK ===== */
.how-it-works {
  padding: 100px 20px;
  background: #fff;
}

.section-tag {
  color: #ff4d00;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  color: #555;
  font-size: 15px;
  max-width: 500px;
  margin-bottom: 40px;
}

/* ===== ACCORDION ===== */
.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-header.active .icon {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.accordion-body.open {
  display: block;
}

/* ===== IMAGE ===== */
.image-wrapper {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.image-wrapper img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* INFO CARD */
.info-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #ff4d00;
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  width: 220px;
}

.info-card h4 {
  font-size: 28px;
  margin-bottom: 5px;
}

.info-card p {
  font-size: 14px;
}

.avatars {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
}

.avatars .more {
  width: 36px;
  height: 36px;
  background: #fff;
  color: #ff4d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }

  .image-wrapper {
    margin: 60px auto 0;
  }

  .info-card {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .info-card {
    position: static;
    margin-top: 20px;
  }
}


/* ===== TOURS SECTION ===== */
.tours-section {
  padding: 100px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: auto;
}

/* GRID */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s;
}

.tour-card:hover {
  transform: translateY(-6px);
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
}

/* IMAGE */
.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.tour-content {
  padding: 18px;
}

.tour-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tour-content ul {
  list-style: none;
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

.tour-content ul li {
  margin-bottom: 6px;
}

/* ACTIONS */
.tour-actions {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
}

.call {
  background: #ff4d00;
}

.whatsapp {
  background: #25d366;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}


/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 100px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  margin-bottom: 70px;
}

.section-tag {
  color: #ff4d00;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* FEATURES */
.why-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-item {
  display: flex;
  gap: 18px;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.icon {
  min-width: 52px;
  height: 52px;
  background: #ffe9dd;
  color: #ff4d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* CENTER IMAGE */
.why-image {
  display: flex;
  justify-content: center;
}

.image-circle {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
}

.image-circle img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-img {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 36px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-item {
    justify-content: center;
  }

  .why-image {
    order: -1;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
  }

  .image-circle {
    width: 300px;
    height: 300px;
  }
}


/* ===== ALL LOCATIONS SECTION ===== */
.locations-section {
  background: #1c1c1c;
  padding: 80px 20px;
  color: #fff;
}

.locations-container {
  max-width: 1200px;
  margin: auto;
}

.locations-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* LIST */
.locations-grid ul {
  list-style: none;
}

.locations-grid li {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

/* CHECK ICON */
.locations-grid li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4d00;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-title {
    font-size: 24px;
  }
}



/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff5f0;
  padding: 100px 20px;
  border-radius: 40px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== LEFT VISUAL ===== */
.faq-visual {
  position: relative;
  min-height: 420px;
}

.bg-card {
  position: absolute;
  width: 200px;
  height: 360px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.bg-1 {
  left: 0;
  top: 40px;
  background-image: url("../image/our-faqs-img-1.jpg");
  transform: skewX(-10deg);
}

.bg-2 {
  left: 160px;
  top: 0;
  background-image: url("../image/our-faqs-img-2.jpg");
  transform: skewX(-10deg);
}

.car-image {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 420px;
  z-index: 2;
}

/* ===== CONTENT ===== */
.faq-content {
  max-width: 500px;
}

.section-tag {
  color: #ff4d00;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.faq-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ===== ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  color: #ff4d00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-visual {
    margin-bottom: 40px;
  }

  .car-image {
    position: static;
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  .bg-card {
    display: none;
  }

  .faq-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .faq-content h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}


/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 20px;
  background: #fff;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  background: #000;
  border-radius: 40px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* GRID BACKGROUND */
.cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.cta-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 35px;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff4d00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn span {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #ff4d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cta-btn:hover {
  background: #e64500;
}

/* IMAGE */
.cta-image {
  position: relative;
  z-index: 2;
}

.cta-image img {
  max-width: 460px;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }

  .cta-content {
    margin-bottom: 40px;
  }

  .cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-image img {
    max-width: 320px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info p {
  color: #555;
  font-size: 15px;
  max-width: 500px;
  margin-bottom: 40px;
}

.section-tag {
  color: #ff4d00;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* CONTACT ITEMS */
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item .icon {
  min-width: 48px;
  height: 48px;
  background: #ffe9dd;
  color: #ff4d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: #666;
}

/* RIGHT FORM */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

/* BUTTON */
.contact-btn {
  background: #ff4d00;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn span {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #ff4d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-btn:hover {
  background: #e64500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .contact-info h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}


/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 20px 40px;
  border-radius: 40px 40px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li a.active {
  color: #ff4d00;
}

/* BRAND */
.brand .logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.brand .logo span {
  color: #ff4d00;
}

.brand p {
  color: #bbb;
  font-size: 15px;
  max-width: 260px;
}

/* NEWSLETTER */
.newsletter-box {
  display: flex;
  align-items: center;
  background: #333;
  border-radius: 30px;
  padding: 6px;
  max-width: 300px;
}

.newsletter-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 14px;
  flex: 1;
}

.newsletter-box button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ff4d00;
  color: #fff;
  cursor: pointer;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 40px 0 30px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  background: #ff4d00;
  border-color: #ff4d00;
}
/* ===== FOOTER BOTTOM ENHANCEMENTS ===== */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gst-text {
  font-size: 13px;
  color: #aaa;
}

.made-india {
  font-size: 14px;
  color: #ccc;
  text-align: center;
}

.made-india span {
  color: #ff4d00;
}

/* RESPONSIVE FOOTER BOTTOM */
@media (max-width: 991px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .made-india {
    margin: 10px 0;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand p {
    margin: auto;
  }

  .newsletter-box {
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.modal-box h3 {
  margin-bottom: 20px;
  font-weight: 800;
}

.modal-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.modal-box button {
  width: 100%;
  background: #ff4d00;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 26px;
  width: 70px !important;
  border-radius: 100% !important;
  border: none;
  background: none;
  cursor: pointer;
}


/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2500;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== BUTTON COLORS ===== */
.float-btn.call {
  background: #ff4d00;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.top {
  background: #111;
  display: none;
}

/* ===== HOVER REACTION ===== */
.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* ===== PULSE ANIMATION ===== */
.pulse {
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 77, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0);
  }
}

/* WhatsApp green pulse */
.whatsapp.pulse {
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
