/* ===== GLOBAL TRAVELS - MAIN STYLESHEET ===== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #e8572a;
  --primary-dark: #c94420;
  --primary-light: #f07a53;
  --secondary: #1a3c5e;
  --secondary-dark: #0f2540;
  --secondary-light: #2a5a8c;
  --accent: #f5a623;
  --white: #ffffff;
  --light-bg: #f8f4f0;
  --light-gray: #f2f2f2;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}
.top-bar a:hover {
  color: var(--accent);
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar .icon {
  font-size: 12px;
}

/* ===== HEADER / NAVBAR ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}
.logo-text .brand {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
}
.logo-text .tagline {
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: rgba(232, 87, 42, 0.08);
}

.nav-menu .has-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  border-top: 3px solid var(--primary);
}
.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.2s;
}
.dropdown li:last-child a {
  border-bottom: none;
}
.dropdown li a:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 24px;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: white !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--secondary) 50%,
    var(--secondary-light) 100%
  );
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1400&q=80")
    center/cover;
  opacity: 0.2;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 87, 42, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(245, 166, 35, 0.1) 0%,
      transparent 50%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 650px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 87, 42, 0.3);
  border: 1px solid rgba(232, 87, 42, 0.5);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 span {
  color: var(--accent);
}
.hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 87, 42, 0.4);
}
.btn-secondary {
  background: transparent;
  color: white;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat {
  text-align: left;
}
.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  font-family: "Playfair Display", serif;
}
.stat-label {
  font-size: 12px;
  opacity: 0.8;
}

/* ===== QUICK SERVICES BAR ===== */
.services-quick {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  margin-top: -40px;
  border-radius: var(--radius-lg);
  margin-left: 20px;
  margin-right: 20px;
}
.services-quick .container {
  padding: 0;
}
.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.quick-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.quick-service:last-child {
  border-right: none;
}
.quick-service:hover {
  background: var(--primary);
}
.quick-service:hover * {
  color: white !important;
}
.quick-service:hover .qs-icon {
  background: rgba(255, 255, 255, 0.2);
}
.qs-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
}
.quick-service h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
}

/* ===== SECTION STYLES ===== */
section {
  padding: 70px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: rgba(232, 87, 42, 0.1);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-title span {
  color: var(--primary);
}
.section-desc {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card:hover .sc-icon {
  background: var(--primary);
  color: white;
}
.sc-icon {
  width: 68px;
  height: 68px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: all 0.3s;
  color: var(--primary);
}
.service-card h3 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
}
.service-card a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-card a:hover {
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--light-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 420px;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(232, 87, 42, 0.4);
}
.why-badge .num {
  font-size: 32px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  display: block;
}
.why-badge .lbl {
  font-size: 12px;
  opacity: 0.9;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  min-width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 4px;
  font-family: "Poppins";
  font-weight: 600;
}
.why-item p {
  font-size: 13.5px;
  color: var(--text-gray);
}

/* ===== TOUR PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.pkg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s;
  background: white;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pkg-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.08);
}
.pkg-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}
.pkg-body {
  padding: 20px;
}
.pkg-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.pkg-meta span {
  font-size: 12px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}
.pkg-body h3 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.pkg-body p {
  font-size: 13.5px;
  color: var(--text-gray);
  margin-bottom: 14px;
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--light-bg);
}
.pkg-price {
  font-size: 13px;
  color: var(--text-gray);
}
.pkg-price strong {
  font-size: 20px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
.pkg-btn {
  background: var(--secondary);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.pkg-btn:hover {
  background: var(--primary);
}

/* ===== CITIES SECTION ===== */
.cities-section {
  background: var(--secondary-dark);
  color: white;
}
.cities-section .section-title {
  color: white;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.city-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
}
.city-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light-bg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--primary);
}
.testi-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 12px;
}
.testi-card p {
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testi-author h5 {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
}
.testi-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: white;
}
.cta-section p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
  color: white;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
}
.btn-white:hover {
  background: var(--accent);
  color: white;
}
.btn-outline-white {
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--secondary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text .brand {
  color: white;
  font-size: 20px;
}
.footer-brand p {
  font-size: 13.5px;
  margin: 14px 0 20px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: "Poppins";
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}
.footer-col li {
  margin-bottom: 9px;
}
.footer-col li a {
  font-size: 13.5px;
  transition: all 0.2s;
}
.footer-col li a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  margin-bottom: 12px;
}
.footer-contact .fi {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1400&q=80")
    center/cover;
  opacity: 0.1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  opacity: 0.85;
}
.breadcrumb a:hover {
  color: var(--accent);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-content h2 {
  font-size: 34px;
  color: var(--secondary);
  margin-bottom: 16px;
}
.about-content p {
  font-size: 14.5px;
  color: var(--text-gray);
  margin-bottom: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.astat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Playfair Display";
}
.astat-label {
  font-size: 12.5px;
  color: var(--text-gray);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
  padding: 70px 0;
}
.sd-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}
.sd-main h2 {
  font-size: 30px;
  color: var(--secondary);
  margin-bottom: 16px;
}
.sd-main p {
  font-size: 14.5px;
  color: var(--text-gray);
  margin-bottom: 14px;
  line-height: 1.8;
}
.sd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.sd-feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 14px;
}
.sd-feat .fi {
  color: var(--primary);
  margin-top: 2px;
}
.sd-feat h5 {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
}
.sd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.sw-head {
  background: var(--secondary);
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Poppins";
}
.sw-body {
  padding: 20px;
}
.sw-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sw-body ul li:last-child {
  border-bottom: none;
}
.sw-body ul li::before {
  content: "✈";
  color: var(--primary);
}
.contact-widget {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.contact-widget h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-widget p {
  font-size: 13.5px;
  opacity: 0.9;
    color: white;
  margin-bottom: 16px;
}
.contact-widget .phone {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

/* ===== ENQUIRY PAGE ===== */
.enquiry-section {
  padding: 70px 0;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}
.eq-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.eq-form-wrap h2 {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 6px;
}
.eq-form-wrap p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: "Poppins";
  font-size: 14px;
  transition: border-color 0.3s;
  background: var(--light-bg);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 13px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins";
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
}
.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(232, 87, 42, 0.35);
}
.eq-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232, 87, 42, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins";
  color: var(--secondary);
  margin-bottom: 4px;
}
.info-card p {
  font-size: 13px;
  color: var(--text-gray);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 70px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  background: var(--light-bg);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

/* ===== AREAS PAGE ===== */
.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding-bottom: 60px;
}
.city-cards-grid  .city-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s;
}
.city-cards-grid  .city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: rgba(232, 66, 26, 0.04);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);

}
.city-cards-grid  .city-card-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  
  gap: 14px;
}
.city-icon {
  font-size: 30px;
}
.city-card-header h3 {
  font-size: 18px;
  font-family: "Poppins";
  font-weight: 600;
}
.city-card-header p {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
}
.city-card-body {
  padding: 20px;
}
.city-card-body p {
  font-size: 13.5px;
  color: var(--text-gray);
  margin-bottom: 14px;
  line-height: 1.7;
}
.city-content h3, .city-content p{
 color: white;
margin:auto 0;

}
.city-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.city-svc-tag {
  background: rgba(232, 87, 42, 0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== UTILITIES ===== */
.bg-light {
  background: var(--light-bg);
}
.text-center {
  text-align: center;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 40px 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .sd-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .quick-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .enq{
    display:none;
  }
}

  @media (max-width: 768px) {
  /*.hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
    gap: 0;
    overflow-y: auto;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu > li > a {
    padding: 12px 4px;
    border-radius: 0;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-bg);
    border: none;
    border-radius: 0;
    display: none;
  }
  .nav-menu li:hover .dropdown {
    display: block;
  }
  .top-bar-left {
    display: none;
  }*/
  .hero {
    min-height: 480px;
  }
  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .sd-features {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 16px;
  }
  .travel{
  display:none
}
} 
