/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f7fa;
  color: #1a1a2e;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  background: #0b1d3a;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header img {
  height: 50px;
  width: auto;
}

header nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

header nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

header nav a:hover {
  background: #ffb400;
  color: #0b1d3a;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0b1d3a 0%, #0d4f8b 50%, #1a8bc5 100%);
  color: #fff;
  text-align: center;
  padding: 80px 5% 60px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero > p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.92;
}

/* ===== CTA BUTTONS ===== */
.cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta a:first-child {
  background: #ffb400;
  color: #0b1d3a;
}

.cta a:nth-child(2) {
  background: #25d366;
  color: #fff;
}

.cta a:nth-child(3) {
  background: #fff;
  color: #0b1d3a;
}

.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px 5%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section h2 {
  font-size: 1.8rem;
  color: #0b1d3a;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffb400;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section h3 {
  font-size: 1.2rem;
  color: #0d4f8b;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* ===== SERVICES GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.card {
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  padding: 28px 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b1d3a;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #d6e4f0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 79, 139, 0.15);
}

/* ===== TEMPO & YATRA ===== */
#tempo p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

#yatra ul {
  max-width: 500px;
  margin: 0 auto;
  list-style: disc;
  padding-left: 24px;
}

#yatra li {
  font-size: 1.05rem;
  padding: 6px 0;
  color: #333;
}

/* ===== LEGAL ===== */
.legal p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
}

/* ===== CONTACT / FORM ===== */
#contact form {
  max-width: 500px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#contact input,
#contact textarea {
  padding: 12px 16px;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #0d4f8b;
  box-shadow: 0 0 0 3px rgba(13, 79, 139, 0.12);
}

#contact textarea {
  min-height: 100px;
  resize: vertical;
}

#contact button {
  padding: 14px;
  background: #0d4f8b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

#contact button:hover {
  background: #0b1d3a;
}

#contact > p {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

#contact iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px 5%;
  background: #0b1d3a;
  color: #ccc;
}

footer img {
  height: 45px;
  margin-bottom: 10px;
}

footer p {
  font-size: 0.9rem;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp,
.call {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 200;
  transition: transform 0.2s;
}

.whatsapp {
  bottom: 90px;
  right: 20px;
  background: #25d366;
  color: #fff;
}

.call {
  bottom: 20px;
  right: 20px;
  background: #ffb400;
  color: #0b1d3a;
}

.whatsapp:hover,
.call:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  header nav {
    justify-content: center;
    gap: 10px;
  }

  .hero {
    padding: 50px 5% 40px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero > p {
    font-size: 1rem;
  }

  .cta a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .section {
    margin: 20px 10px;
    padding: 30px 16px;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cta {
    flex-direction: column;
    align-items: center;
  }

  .cta a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  header nav a {
    font-size: 13px;
    padding: 4px 8px;
  }
}
