@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0a1628;
  --sky: #1a6faf;
  --sky-light: #e8f4fd;
  --gold: #d4a030;
  --gold-light: #fdf4e1;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text: #1c2536;
  --muted: #6b7591;
  --border: #e2e8f4;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  padding: 0.75rem 1rem;
  background: var(--sky);
  color: var(--white);
  border-radius: 999px;
  z-index: 120;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  transform: translateY(0);
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  z-index: 10001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 42px;        /* was 36px */
  height: 42px;
  background: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}

.logo-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;  /* was 1.25rem */
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: #c49028 !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10000;
  pointer-events: auto !important;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links.show {
  display: flex;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #061026 0%, #0b1e45 35%, #0f2d61 75%, #091d3c 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.14), transparent 16%),
    radial-gradient(circle at 82% 18%, rgba(212,160,48,0.12), transparent 12%),
    radial-gradient(circle at 20% 75%, rgba(255,255,255,0.08), transparent 14%);
}

.hero::after {
  content: '✈';
  position: absolute;
  top: 14%;
  right: 7%;
  font-size: 8rem;
  color: rgba(255,255,255,0.1);
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(26,111,175,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,160,48,0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-plane {
  position: absolute;
  top: 24%;
  right: 2%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.16), transparent 35%),
              radial-gradient(circle at 75% 55%, rgba(255,255,255,0.08), transparent 22%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(10deg);
  pointer-events: none;
}

.hero-plane::before {
  content: '✈';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: rgba(255,255,255,0.08);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 2rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,48,0.12);
  border: 1px solid rgba(212,160,48,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: #c49028; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.stat-item .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO RIGHT - floating cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: floatUp 0.8s ease both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}

.float-card-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.float-card-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

.float-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.destinations-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.dest-tag {
  background: rgba(26,111,175,0.2);
  color: #7fc4f7;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(26,111,175,0.3);
}

/* SECTIONS */
section { padding: 5rem 0; }

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

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span { color: var(--sky); }

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  font-weight: 300;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(26,111,175,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--sky-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.service-list {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sky);
}

/* WHY CHOOSE US */
.why-section { background: var(--navy); }

.why-section .section-title { color: var(--white); }
.why-section .section-label { color: var(--gold); }
.why-section .section-desc { color: rgba(255,255,255,0.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(26,111,175,0.4);
}

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.6;
}

/* MISSION VISION */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.mv-card.mission {
  background: var(--sky-light);
  border: 1px solid rgba(26,111,175,0.15);
}

.mv-card.vision {
  background: var(--gold-light);
  border: 1px solid rgba(212,160,48,0.2);
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.mv-card p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.mv-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.mission .mv-badge { background: rgba(26,111,175,0.12); color: var(--sky); }
.vision .mv-badge { background: rgba(212,160,48,0.15); color: #a07010; }

/* CONTACT SECTION */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { padding-top: 0.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sky-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.contact-detail span { font-size: 0.95rem; color: var(--text); }

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(26,111,175,0.1);
}

.form-group textarea { min-height: 110px; resize: vertical; }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* PAGE HERO (for inner pages) */
.page-hero {
  background: linear-gradient(180deg, #0b1f3d 0%, #112e58 50%, #0a1d35 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 30%),
              radial-gradient(ellipse 50% 70% at 80% 25%, rgba(212,160,48,0.08) 0%, transparent 28%),
              radial-gradient(ellipse 40% 45% at 55% 70%, rgba(255,255,255,0.05) 0%, transparent 35%);
}

.page-hero::after {
  content: '✈';
  position: absolute;
  right: 3rem;
  top: 2.5rem;
  font-size: 7rem;
  color: rgba(255,255,255,0.1);
  transform: rotate(-20deg);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: rgba(255,255,255,0.45); font-size: 0.82rem; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); font-size: 0.82rem; }
.breadcrumb .current { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
}

/* PRIVACY POLICY SPECIFIC */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child { margin-top: 0; border-top: none; }

.policy-content p {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

.policy-content ul li { margin-bottom: 0.4rem; }

.policy-info-box {
  background: var(--sky-light);
  border: 1px solid rgba(26,111,175,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--sky);
}

/* ABOUT PAGE */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: var(--sky-light);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(26,111,175,0.1);
}

.about-visual .big-icon { font-size: 4rem; }
.about-visual p { color: var(--muted); font-size: 0.9rem; font-weight: 300; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.expertise-item:hover {
  border-color: rgba(26,111,175,0.3);
  background: var(--sky-light);
}

.expertise-item .dot {
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.98);
    padding: 1rem 2rem 1.25rem;
    gap: 0.5rem;
    flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
  }

  .nav-links a.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    text-align: center;
  }

  .nav-links.show {
    display: flex !important;
  }

  .hamburger { 
    display: flex !important;
    z-index: 10002 !important;
    position: relative;
    pointer-events: auto !important;
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .mv-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  
  .section-title { font-size: 1.75rem; }
  .section-desc { font-size: 0.95rem; }
  
  .service-card { padding: 1.25rem; }
  .why-card { padding: 1.25rem; }
  
  .btn-primary, .btn-outline { 
    width: 100%; 
    text-align: center;
    padding: 0.875rem 1.5rem;
  }
  
  .hero-actions { 
    flex-direction: column; 
    gap: 0.75rem;
  }
  
  .hero h1 { font-size: 2.25rem; }
  
  .container { padding: 0 1rem; }
  
  .logo-text { font-size: 1.1rem; }
  .logo-icon { width: 36px; height: 36px; }
  
  /* Additional mobile improvements */
  .nav-links { 
    top: 60px;
    padding: 1rem;
  }
  
  .page-hero { 
    padding: 3rem 1rem;
  }
  
  .page-hero h1 { 
    font-size: 1.75rem;
  }
  
  .service-detail { 
    flex-direction: column;
  }
  
  .service-sidebar { 
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .service-body { 
    width: 100%;
  }
  
  .mv-grid { 
    grid-template-columns: 1fr;
  }
  
  .about-intro { 
    grid-template-columns: 1fr;
  }
  
  .contact-layout { 
    flex-direction: column;
  }
  
  .contact-info, .contact-form { 
    width: 100%;
  }
  
  .form-row { 
    flex-direction: column;
  }
}
