/*
Theme Name: Naqsh Consultants
Theme URI: https://naqshconsultants.com
Author: Naqsh Consultants
Author URI: https://naqshconsultants.com
Description: A modern, professional WordPress theme for Naqsh Consultants — Study Abroad, Visa, Immigration & Career Consulting.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naqsh-consultants
Tags: business, consulting, education, one-page, responsive
*/

/* ─── CSS VARIABLES ─── */
:root {
  --navy: #0B1F3A;
  --navy-mid: #122845;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E9C8;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #0B1F3A;
  --text-mid: #3A4F6A;
  --text-light: #7A8FA8;
  --border: rgba(201,168,76,0.2);
  --shadow-sm: 0 4px 16px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ─── LAYOUT UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}
.section-title {
  font-size: clamp(30px, 3.5vw, 46px);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px; line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 15px 36px; border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  transition: all 0.3s; letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
  color: var(--navy);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white; font-size: 15px; font-weight: 400;
  padding: 15px 36px; border-radius: var(--radius-sm);
  transition: all 0.3s; letter-spacing: 0.3px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ─── */
#site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(11,31,58,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}
#site-header.scrolled { height: 62px; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.site-logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.logo-img { width: 42px; height: 42px; border-radius: 10px; object-fit: contain; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: white;
  letter-spacing: 0.5px; line-height: 1;
}
.logo-tagline { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

#primary-navigation ul { display: flex; align-items: center; gap: 36px; }
#primary-navigation a {
  color: rgba(255,255,255,0.8); font-size: 14px;
  font-weight: 400; letter-spacing: 0.3px; transition: color 0.2s;
}
#primary-navigation a:hover { color: var(--gold); }
#primary-navigation .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important; font-weight: 600 !important;
  padding: 10px 24px; border-radius: 6px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(11,31,58,0.98); backdrop-filter: blur(12px);
  z-index: 999; padding: 24px 5%;
  flex-direction: column; gap: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8); font-size: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ─── HERO SECTION ─── */
#hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0D2645 50%, #1A3A5C 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  width: 100%; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 16px; border-radius: 50px; margin-bottom: 32px;
}
.hero-badge .badge-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero-badge span { font-size: 12px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.hero-heading {
  font-size: clamp(40px, 5.5vw, 66px);
  color: white; margin-bottom: 24px;
}
.hero-heading span { color: var(--gold); }
.hero-desc { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 44px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap;
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; display: block; margin-top: 4px; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 40px;
  backdrop-filter: blur(10px); position: relative;
}
.hero-card-badge {
  position: absolute; top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  animation: float 3s ease-in-out infinite;
}
.hero-card-badge .badge-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; line-height: 1; }
.hero-card-badge .badge-txt { font-size: 10px; font-weight: 600; letter-spacing: 0.5px; text-align: center; }
.hero-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: white; margin-bottom: 24px; }
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.country-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 8px; text-align: center; cursor: pointer; transition: all 0.25s;
}
.country-item:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.country-flag { font-size: 24px; display: block; margin-bottom: 6px; }
.country-name { font-size: 11px; color: rgba(255,255,255,0.7); }
.hero-promo {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; gap: 14px;
}
.hero-promo-icon { font-size: 28px; flex-shrink: 0; }
.hero-promo-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.hero-promo-text strong { color: var(--gold-light); display: block; font-size: 15px; margin-bottom: 2px; }

/* ─── SERVICES SECTION ─── */
#services-section { background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; gap: 40px; flex-wrap: wrap;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--cream);
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--radius-md); padding: 36px 32px;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.35s; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.2);
}
.service-name { font-size: 22px; margin-bottom: 12px; }
.service-desc { font-size: 14px; line-height: 1.75; color: var(--text-mid); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 13px; font-weight: 500;
  margin-top: 20px; letter-spacing: 0.3px; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

.services-note {
  text-align: center; margin-top: 48px;
}
.services-note-inner {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
  padding: 16px 28px; border-radius: 50px;
  font-size: 14px; color: var(--text-mid);
}

/* ─── DESTINATIONS SECTION ─── */
#destinations-section { background: var(--navy); }
#destinations-section .section-title { color: white; }
#destinations-section .section-desc { color: rgba(255,255,255,0.6); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 0; }
.dest-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 32px 20px;
  text-align: center; transition: all 0.3s; cursor: pointer;
}
.dest-card:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.dest-flag { font-size: 44px; display: block; margin-bottom: 16px; }
.dest-country { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: white; margin-bottom: 8px; }
.dest-count { font-size: 12px; color: var(--gold); letter-spacing: 0.5px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; justify-content: center; }
.dest-tag { font-size: 10px; padding: 4px 10px; background: rgba(255,255,255,0.07); border-radius: 50px; color: rgba(255,255,255,0.6); }
.dest-card-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.25) !important; }
.dest-more-link { color: var(--gold); font-size: 13px; letter-spacing: 0.5px; margin-top: 4px; transition: opacity 0.2s; }
.dest-more-link:hover { opacity: 0.8; }

/* ─── WHY US SECTION ─── */
#why-section { background: var(--cream); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: white; border-radius: var(--radius-md);
  border: 1px solid rgba(11,31,58,0.07); transition: box-shadow 0.3s;
}
.why-feature:hover { box-shadow: var(--shadow-md); }
.why-feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.why-feature-title { font-size: 19px; margin-bottom: 6px; }
.why-feature-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

.process-card {
  background: linear-gradient(160deg, var(--navy), #1A3A5C);
  border-radius: 24px; padding: 48px; position: relative; overflow: hidden;
}
.process-card::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.2), transparent);
  pointer-events: none;
}
.process-card-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: white; margin-bottom: 8px; }
.process-card-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.process-steps { display: flex; flex-direction: column; gap: 16px; }
.process-step {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; transition: all 0.3s;
}
.process-step:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }
.step-num {
  width: 36px; height: 36px; min-width: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: var(--navy);
}
.step-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.step-text strong { display: block; color: white; margin-bottom: 2px; font-size: 15px; }

/* ─── TESTIMONIALS ─── */
#testimonials-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.testi-card {
  background: var(--cream); border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--radius-md); padding: 32px 28px;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-quote { font-size: 48px; line-height: 1; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-weight: 700; margin-bottom: 16px; opacity: 0.6; }
.testi-text { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: white; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.testi-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ─── CONTACT SECTION ─── */
#contact-section { background: linear-gradient(160deg, var(--navy), #0D2645); }
#contact-section .section-title { color: white; }
#contact-section .section-desc { color: rgba(255,255,255,0.6); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; margin-top: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-label { font-size: 12px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; display: block; }
.contact-val { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.whatsapp-box {
  padding: 24px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 16px;
}
.whatsapp-title { font-size: 14px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.whatsapp-desc { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.6; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 12px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.9; }

.contact-form-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 44px;
}
.form-box-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: white; margin-bottom: 8px; }
.form-box-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.3px; font-family: 'DM Sans', sans-serif; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: white; font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 13px 16px; border-radius: 10px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.btn-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; border: none; border-radius: 10px;
  transition: all 0.3s; letter-spacing: 0.3px;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
.btn-submit.sent { background: linear-gradient(135deg, #22c55e, #16a34a); cursor: default; transform: none; }

/* ─── FOOTER ─── */
#site-footer {
  background: #07131F;
  padding: 60px 5% 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 48px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.25s;
}
.social-link:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); }
.footer-col-title { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-copy span { color: var(--gold); }

/* ─── KEYFRAMES ─── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #primary-navigation { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 70px 0; }
}
