/* =======================
   THEME VARIABLES
======================= */
:root {
  --primary: #0f6b78;
  --primary-dark: #0b5a65;
  --primary-light: #e6f3f5;
  --text-dark: #0b2239;
}

/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

/* =======================
   NAVBAR
======================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;      /* IMPORTANT */
  padding: 25px 50px;       /* ↑ increases height */
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
}

.navbar a {
  margin-left: 25px;
  font-size: 18px;   /* bigger */
  text-decoration: none;
  color: #555;
  font-weight: bold;
}

.navbar a:hover {
  color: var(--primary);
}

/* LOGO */
/* LOGO AREA */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO IMAGE */
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* TEXT */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* GEEPEE */
.geepee {
  font-size: 28px;
  font-weight: 700;
  color: #ff7a18;
  font-family: 'Playfair Display', serif;
}

/* TRAVELS */
.travels {
  font-size: 20px;
  font-weight: 600;
  color: #0f6b78;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
  color: var(--primary-dark);
}

.navbar nav.open {
  display: flex;
}
/* CENTER NAV CONTENT */
.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;

  color: #555;

  font-size: 14px;
  font-weight: 500;

  gap: 5px;
}
/* =======================
   HERO
======================= */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background: url("images/Charminar_073616_T_Prince_charminar-1 Medium.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =======================
   BUTTONS
======================= */
.btn {
  background: var(--primary);
  color: white;
  padding: 12px 25px;
  border: none;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  margin-top: 10px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* =======================
   SECTIONS
======================= */
.section {
  padding: 60px 40px;
  text-align: center;
}

.section h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.light-bg {
  background: #f7f9fc;
}

/* =======================
   CARDS
======================= */
.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  width: 280px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(15,107,120,0.25);
}

/* =======================
   ABOUT SECTION
======================= */
.about-section {
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =======================
   WHY CHOOSE US
======================= */
.why-choose {
  background: var(--primary-light);
  padding: 80px 40px;
  text-align: center;
}

.why-subtitle {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-title {
  font-size: 40px;
  margin-bottom: 50px;
  color: #111;
}

.why-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-card {
  background: #ffffff;
  width: 300px;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(15,107,120,0.25);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
}

/* =======================
   CONTACT PAGE
======================= */
.contact-page {
  padding: 60px 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 40px;
}

.contact-header p {
  color: #666;
}

/* CONTACT LAYOUT */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;

  display: flex;
  gap: 40px;

  align-items: stretch;   /* IMPORTANT */
}

/* BOTH SIDES EQUAL */
.contact-form,
.get-in-touch {
  flex: 1;
}

.contact-form {
  flex: 1;
  background: #f7f9fc;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.get-in-touch {
  flex: 1;

  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 14px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form,
.get-in-touch {
  transition: 0.3s ease;
}

.contact-form:hover,
.get-in-touch:hover {
  transform: translateY(-5px);
}

.contact-item {
  background: #f7f9fc;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
}

/* MAP */
.map-box {
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* =======================
   FOOTER (FIXED)
======================= */
.site-footer {
  background: var(--primary);
  color: #ffffff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-box {
  flex: 1;
  min-width: 220px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  color: #e1f1f3;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  background: var(--primary-dark);
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
  .hero {
    height: 70vh;
  }
  .navbar {
    padding: 20px 30px;
  }
  .section {
    padding: 50px 30px;
  }
  .card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
  }

  .nav-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 8px;
  }

  .navbar nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 12px;
    background: #ffffff;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 0 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .navbar nav.open {
    max-height: 500px;
    padding: 12px 0;
  }

  .navbar a {
    margin: 8px 0;
    font-size: 16px;
  }

  .hero {
    height: 60vh;
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 35px 20px;
  }

  .section h2 {
    font-size: 24px;
  }

  .card-container,
  .why-cards,
  .about-container,
  .contact-wrapper,
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .why-card {
    width: 100%;
    max-width: 450px;
  }

  .about-text,
  .about-image,
  .footer-box,
  .contact-form,
  .get-in-touch {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-wrapper {
    gap: 20px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .why-title {
    font-size: 28px;
  }

  .hero-slider {
    bottom: 20px;
  }
}
/* HERO IMAGE SLIDER */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: absolute;
  bottom: 30px;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: calc(300px * 10);
  animation: scrollSlider 25s linear infinite;
}

.slider-track img {
  width: 300px;
  height: 180px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ANIMATION */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-track img {
    width: 220px;
    height: 140px;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(-60px); /* MOVE TEXT UP */
}
/* ONLY FOR SERVICES PAGE */
.card-container.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Make cards bigger for vertical layout */
.card-container.vertical .card {
  width: 60%;
  max-width: 500px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}
/* PAGE TRANSITION */
body {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

/* Fade OUT */
body.fade-out {
  opacity: 0;
}
/* SERVICE CARD IMAGE */
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.card img {
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}
.card-container.vertical {
  flex-direction: column;
}
/* FIX HOME PAGE SERVICE IMAGES ONLY */
.card-container:not(.vertical) .card img {
  height: 130px;     /* smaller height */
  object-fit: cover;
}
/* HERO TEXT STYLING */
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 18px;
  color: #eaeaea;
  margin: 20px 0 30px;
  max-width: 600px;
}

/* Highlight word */
.highlight {
  color: var(--primary);
}
.hero-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 14px;
  }
}

/* HERO OVERLAY (for readability) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* HERO CONTENT FIX */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: -40px;   /* moves text slightly up */
}

/* HEADING */
.hero h1 {
  font-size: 56px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

/* SUBTEXT */
.hero p {
  font-size: 18px;
  color: #eaeaea;
  margin: 15px 0 25px;
}

/* BUTTON GROUP FIX */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* SERVICES SECTION BACKGROUND */
.services-section {
  position: relative;
  background: #f7f9fc;
  transition: background 0.5s ease;
}

/* DEFAULT */
.services-section {
  background-size: cover;
  background-position: center;
}

/* HOVER BACKGROUNDS */
.services-section:has(.ticket:hover) {
  background-image: url("images/pexels-clickerhappy-227690.jpg");
}

.services-section:has(.car:hover) {
  background-image: url("images/61.jpg");
}

.services-section:has(.bus:hover) {
  background-image: url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957");
}

/* DARK OVERLAY */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.4s;
}

.services-section:has(.card:hover)::before {
  opacity: 1;
}

/* KEEP TEXT ABOVE */
.services-section * {
  position: relative;
  z-index: 2;
}


/* CONTACT PAGE BACKGROUND */
.contact-page {
  position: relative;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* KEEP CONTENT ABOVE */
.contact-page > * {
  position: relative;
  z-index: 2;
}

/* FORM STYLE IMPROVE */
.contact-form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}

/* GET IN TOUCH BOX */
.get-in-touch {
  background: rgba(255,255,255,0.9);
  padding: 25px;
  border-radius: 12px;
}
/* CENTER SUCCESS MESSAGE */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #0f6b78;
  color: #fff;
  padding: 20px 35px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  animation: popupFade 0.4s forwards;
}

/* ANIMATION */
@keyframes popupFade {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* COMING SOON PAGE */
.coming-section {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #e6f3f5, #ffffff);
  text-align: center;
}

.coming-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 500px;
}

.coming-box img {
  width: 250px;
  margin-bottom: 20px;
}

.coming-box h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f6b78;
}

.coming-box p {
  color: #555;
  margin-bottom: 20px;
}
/* HOTEL HERO */
.hotel-hero {
  height: 50vh;
  background: url("https://images.unsplash.com/photo-1501117716987-c8e1ecb2101d");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* SEARCH */
.hotel-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 20px;
}

.hotel-search input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* HOTEL CARDS */
.hotel-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap;
}

.hotel-card {
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}

.hotel-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
}

.hotel-card h3 {
  margin: 10px 0;
}

.hotel-card span {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  color: #0f6b78;
}

/* FULL SCREEN HOTEL PAGE */
.hotel-coming {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* DARK OVERLAY */
.hotel-coming .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.hotel-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  padding: 20px;
}

.hotel-content img {
  width: 220px;
  margin-bottom: 20px;
}

.hotel-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hotel-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
}

/* BUTTON */
.hotel-content .btn {
  background: #0f6b78;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
}

.hotel-content .btn:hover {
  background: #0b5a65;
}
/* SERVICE HOVER EFFECT */
.service-card {
  position: relative;
  overflow: hidden;
}

/* SLIDE OVERLAY */
/* SERVICE CARD */
.service-card {
  position: relative;
  overflow: hidden;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;

  background: rgba(15,107,120,0.95);
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  text-align: center;
  padding: 25px;

  transform: translateY(100%);
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover .service-overlay {
  transform: translateY(0);
}

/* TEXT */
.service-overlay h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-overlay p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 250px;
}

/* SHOW ON HOVER */
.service-card:hover .service-overlay {
  transform: translateY(0);
}

/* TEXT */
.service-overlay h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-overlay p {
  font-size: 14px;
  line-height: 1.6;
}
/* TERMS PAGE */
.terms-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.terms-box {
  max-width: 900px;
  margin: auto;

  background: white;
  padding: 40px;

  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.terms-box h1 {
  margin-bottom: 25px;
  color: #0f6b78;
}

.terms-box h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #333;
}

.terms-box p {
  line-height: 1.8;
  color: #555;
}



/* CONTACT EXTRA */
.contact-extra {
  margin-top: 25px;
  text-align: center;
}

.contact-extra p {
  color: #0f6b78;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TRUST POINTS */
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-points span {
  background: #eef7f8;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #444;
}





/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  /* BODY */
  body {
    overflow-x: hidden;
  }

  /* NAVBAR */
  .navbar {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  /* LOGO */
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    height: 42px;
  }

  .geepee {
    font-size: 22px;
  }

  .travels {
    font-size: 15px;
  }

  /* HAMBURGER */
  .nav-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* MOBILE NAV */
  .navbar nav {
    display: none;

    width: 100%;

    flex-direction: column;

    background: white;

    margin-top: 15px;

    padding: 15px;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  /* SHOW MENU */
  .navbar nav.open {
    display: flex;
  }

  .navbar nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 100px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* SLIDER */
  .slider-track img {
    width: 250px;
    height: 160px;
  }

  /* CONTACT */
  .contact-wrapper {
    flex-direction: column;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

}