* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1280px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 900px) {
  .site-logo {
    height: 64px;
  }
}

/* Mobile */
@media (max-width: 640px) {
   .site-logo {
    width: 100px;
  }
}


.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #e5e7eb;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover {
  color: #14c9e7;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn,
.whatsapp-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.call-btn,
.primary-btn {
  background: linear-gradient(135deg, #14c9e7, #0ea5c0);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 201, 231, 0.25);
}

.call-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
}

.whatsapp-btn,
.secondary-btn {
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  background: transparent;
}

.secondary-btn {
  color: #0f172a;
  border: 1px solid #cbd5e1;
  background: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4, 8, 20, 0.86), rgba(4, 8, 20, 0.58));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: rgba(20, 201, 231, 0.16);
  color: #9befff;
  padding: 9px 16px;
  border: 1px solid rgba(20, 201, 231, 0.35);
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-left h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-left p {
  color: #d1d5db;
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.point-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
}

.point-card strong {
  display: block;
  margin-bottom: 8px;
  color: #9befff;
  font-size: 16px;
}

.point-card span {
  font-size: 14px;
  color: #e5e7eb;
}

/* FORM CARD */
.form-card {
  background: rgba(255,255,255,0.94);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.form-card h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0f172a;
}

.booking-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.form-group textarea,
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.full-btn {
  width: 100%;
}

.center-btn {
  text-align: center;
}

/* QUICK CONTACT */
.quick-contact-bar {
  background: #0ea5c0;
  padding: 16px 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-contact-grid a {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.mini-title {
  display: inline-block;
  color: #0ea5c0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0f172a;
}

.section-head p {
  font-size: 18px;
  color: #64748b;
}

.light-mini {
  color: #9befff;
}

.light-title {
  color: #fff !important;
}

.light-para {
  color: #d1d5db !important;
}

/* SERVICES PREMIUM */
.services-premium-section {
  background: #ffffff;
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.service-box {
  position: relative;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.service-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.22)
  );
}

.service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 16px 20px;
  text-align: center;
}

.service-content h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* ROUTE SECTION */
.route-section {
  background: linear-gradient(rgba(5, 12, 20, 0.86), rgba(5, 12, 20, 0.86)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.route-card {
  background: #000;
  border: 3px solid #0ea5c0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.route-card:hover {
  transform: translateY(-5px);
}

.route-card img {
  height: 220px;
  object-fit: cover;
}

.route-card h3 {
  color: #fff;
  text-align: center;
  padding: 16px 12px 18px;
  font-size: 22px;
  font-weight: 700;
}

/* VEHICLE GRID */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vehicle-card {
  background: #fff;
  border: 1px solid #d7dee8;
  border-radius: 24px;
  padding: 28px 22px 34px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.06);
  transition: 0.3s;
}

.vehicle-card:hover {
  transform: translateY(-4px);
}

.vehicle-card img {
  height: 260px;
  object-fit: contain;
  margin-bottom: 22px;
}

.vehicle-card h3 {
  font-size: 30px;
  color: #0ea5c0;
  font-weight: 800;
  line-height: 1.2;
}

/* WHY */
.why-section {
  background: #f8fbfd;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0f172a;
}

.why-card p {
  color: #64748b;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 18px;
  color: #0f172a;
}

.about-content p {
  color: #475569;
  font-size: 17px;
  margin-bottom: 14px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.about-list div {
  background: #f8fbfd;
  border: 1px solid #dbeafe;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  color: #0f172a;
}

/* CTA */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #09111d, #0d2235);
}

.cta-box {
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.cta-box p {
  color: #d1d5db;
  font-size: 18px;
  margin-bottom: 26px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* CONTACT */
.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(15,23,42,0.05);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0f172a;
}

.contact-card p {
  margin-bottom: 12px;
  color: #475569;
  font-size: 17px;
}

.contact-card a {
  color: #0ea5c0;
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: #0b0f16;
  color: #cbd5e1;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 30px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer p {
  color: #94a3b8;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #cbd5e1;
}

.footer a:hover {
  color: #14c9e7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px 0;
}

/* ===== FLOATING BUTTONS FINAL FIX ===== */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.float-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* Call Button */
.call-float {
  background: linear-gradient(145deg, #081a35, #0d2347);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.call-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

/* WhatsApp Button */
.whatsapp-float {
  background: linear-gradient(145deg, #25d366, #19b955);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .floating-buttons {
    right: 14px;
    bottom: 18px;
  }

  .float-btn {
    width: 56px;
    height: 56px;
  }

  .float-btn img {
    width: 24px;
    height: 24px;
  }
}
/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .premium-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0b0f16;
    flex-direction: column;
    padding: 18px 20px;
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-buttons .call-btn,
  .nav-buttons .whatsapp-btn {
    display: none;
  }

  .quick-contact-grid,
  .form-row,
  .about-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .about-content h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .hero-left h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .premium-service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-box {
    min-height: 210px;
  }

  .service-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 48px 0;
  }

  .form-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .form-card h2 {
    font-size: 28px;
  }

  .premium-service-grid,
  .route-grid,
  .vehicle-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .route-card img {
    height: 200px;
  }

  .vehicle-card img {
    height: 220px;
  }

  .vehicle-card h3 {
    font-size: 24px;
  }

  .floating-buttons {
    right: 14px;
    bottom: 14px;
  }

  .float-call,
  .float-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  
}
.developer-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050b14 0%, #0c1625 45%, #132238 100%);
    padding: 55px 20px;
}

.developer-section::before{
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: rgba(255, 180, 60, 0.08);
    border-radius: 50%;
    filter: blur(35px);
}

.developer-section::after{
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.developer-box{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.developer-content{
    flex: 1;
    text-align: left;
}

.dev-title{
    margin: 0 0 12px;
    color: #c9d7e6;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.dev-brand-name{
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.8px;
    font-family: "Poppins", "Segoe UI", sans-serif;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.dev-tagline{
    margin: 0;
    color: #b8c7d9;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 400;
}

.dev-logo-wrap{
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dev-logo-wrap:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.34);
}

.dev-company-logo{
    display: block;
    width: auto;
    height: auto;
    max-width: 260px;
    max-height: 140px;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.footer-dev{
    background: linear-gradient(135deg,#03070f,#0d1828);
    padding:40px 20px;
}

.footer-dev-inner{
    max-width:1200px;
    margin:auto;
}

.footer-dev-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.footer-dev-left{
    flex:1;
}

.footer-dev-right{
    flex:0 0 auto;
    margin-right:40px;   /* corner se thoda andar */
}

.footer-developed-text{
    color:#9fb3c8;
    font-size:18px;
    margin-bottom:10px;
}

.footer-dev-name{
    font-size:42px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:8px;
    font-family:Poppins, sans-serif;
}

.footer-dev-tagline{
    font-size:18px;
    color:#b8c7d9;
}

/* ⭐ IMPORTANT LOGO SIZE */
.footer-dev-logo{
    height: 200px;       /* text ke approx height jitna */
    width:auto;
    object-fit:contain;
    transition:0.3s;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.footer-dev-logo:hover{
    transform:scale(2.08);
}

/* ⭐ Mobile */
@media(max-width:768px){

    .footer-dev-flex{
        flex-direction:column;
        text-align:center;
    }

   .footer-dev-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
    .footer-dev-name{
        font-size:28px;
    }

    .footer-dev-logo {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}
}
/* Add below your existing style.css if FAQ cards need spacing */
.faq-section .why-grid {
  margin-top: 20px;
}
.faq-section .why-card h3 {
  margin-bottom: 10px;
}
/* SEO ROUTES */
.seo-routes {
  padding: 50px 0;
  background: #f8fafc;
}

.seo-routes h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.seo-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.seo-route-grid a {
  display: block;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #111;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.seo-route-grid a:hover {
  background: #2563eb;
  color: #fff;
}
.seo-route-links{padding:70px 0;background:#ffffff}.seo-links-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.seo-route-link{display:flex;align-items:center;justify-content:center;min-height:72px;padding:16px 18px;border-radius:18px;background:linear-gradient(135deg,#0f172a,#1d4ed8);color:#fff;font-weight:700;text-align:center;box-shadow:0 16px 32px rgba(15,23,42,.12);transition:.3s}.seo-route-link:hover{transform:translateY(-4px)}@media(max-width:900px){.seo-links-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:560px){.seo-links-grid{grid-template-columns:1fr}}


/* GLOBAL */
body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* SEO ROUTES SECTION */
.seo-routes {
  padding: 60px 0;
  background: #f8fafc;
}

.seo-routes h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}

.seo-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.seo-route-grid a {
  display: block;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #111;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.seo-route-grid a:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-3px);
}

/* MAP EMBED */
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

/* BUTTON ENHANCEMENTS */
.primary-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #1d4ed8;
}

.secondary-btn {
  background: #10b981;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: #059669;
}

/* FLOAT BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn img {
  width: 50px;
  height: 50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seo-routes h2 {
    font-size: 24px;
  }
}



