/* ============================================
   MASTERMIND INTERNATIONAL CONSULTANT
   Main Stylesheet
   ============================================ */

:root {
  --primary: #1a3b8f;
  --primary-light: #3b5bdb;
  --primary-dark: #0f2b6e;
  --accent: #ffd43b;
  --accent-dark: #f0c040;
  --text: #2d3436;
  --text-light: #636e72;
  --text-muted: #b2bec3;
  --white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-gray: #f1f3f5;
  --border: #e9ecef;
  --success: #51cf66;
  --danger: #ff6b6b;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: all 0.3s ease;
  --font: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.text-primary { color: var(--primary-light); }
.text-accent { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.btn-text i { transition: transform 0.3s ease; }
.btn-text:hover i { transform: translateX(4px); }
.btn-text:hover { color: var(--primary-dark); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-phone a {
  color: var(--white);
  font-weight: 600;
  margin-left: 4px;
}

.top-bar-phone a:hover { color: var(--accent); }

.top-bar-service { position: relative; }

.service-btn {
  background: var(--primary-light);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-btn:hover { background: var(--primary-dark); }

.service-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}

.service-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.service-dropdown a i {
  color: var(--primary-light);
  width: 18px;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder > i {
  font-size: 2.2rem;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Navigation */
.nav { display: flex; align-items: center; }

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

.nav-menu li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: var(--bg-light);
}

.nav-menu > li > a i { font-size: 0.7rem; }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 8px 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text);
}

.dropdown li a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.dropdown li a img {
  width: 24px;
  border-radius: 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

.header-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
  white-space: nowrap;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  background: var(--white);
  width: 320px;
  height: 100%;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-header .logo-placeholder > i { font-size: 1.6rem; }
.mobile-nav-header .logo-name { font-size: 0.9rem; }
.mobile-nav-header .logo-tagline { font-size: 0.5rem; }

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.mobile-nav-menu li a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-nav-menu li a:hover { color: var(--primary); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, rgba(26,59,143,0.72) 0%, rgba(59,91,219,0.65) 50%, rgba(92,124,250,0.60) 100%),
              url('../assets/images/hero-bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,212,59,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-content h2 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
  border: none;
  display: block;
  padding: 0;
}

.affiliations-heading {
  font-size: 1.1rem;
  border: none;
  display: block;
  padding: 0;
}

.highlight-box {
  background: rgba(255,255,255,0.15);
  padding: 4px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
}

.about-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-text {
  overflow: hidden;
  min-width: 0;
}

.affiliations {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.affiliations h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
}

.affiliation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  text-align: center;
}

.affiliation-item i {
  font-size: 2rem;
  color: var(--primary-light);
}

.affiliation-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-illustration {
  width: 100%;
  max-width: 450px;
}

.about-illustration svg { width: 100%; height: auto; }

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted {
  padding: 40px 0;
  background: var(--bg-light);
  text-align: center;
}

.trusted h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.review-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-stars { color: var(--accent); font-size: 1.1rem; }

.review-badge p { font-size: 0.9rem; color: var(--text-light); }
.review-badge p strong { color: var(--text); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-light);
}

.service-info {
  flex: 1;
  min-width: 200px;
}

.service-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.service-image {
  width: 160px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.15;
}

.service-image svg { width: 100%; }

/* ============================================
   QUICK CALL
   ============================================ */
.quick-call {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: 60px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quick-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.quick-call-text h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.quick-call-text h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.9;
}

.quick-call-text p {
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 480px;
}

.quick-call-image {
  width: 350px;
  flex-shrink: 0;
}

.quick-call-image svg { width: 100%; height: auto; }

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations {
  padding: 80px 0;
  background: var(--white);
}

.destinations-swiper {
  padding-bottom: 50px;
}

.destinations-swiper .swiper-slide {
  height: auto;
}

.destination-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
}

.destination-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.destination-flag {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.destination-flag img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.destination-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
  flex-shrink: 0;
}

.destination-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.destination-card .btn-text {
  margin-top: auto;
  flex-shrink: 0;
}

.destinations-pagination {
  text-align: center;
}

.destinations-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--text-muted);
  opacity: 1;
}

.destinations-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  padding: 80px 0;
  background: var(--white);
}

.reviews-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.review-summary {
  text-align: center;
  flex-shrink: 0;
  width: 200px;
  padding: 24px;
}

.review-rating-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.review-stars-big {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.review-summary p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.google-logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Product Sans', 'Poppins', sans-serif;
}

.reviews-swiper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-header h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.review-header small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.google-icon { margin-left: auto; font-size: 1.2rem; }

.review-stars-small {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-text > p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-review {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.google-logo-small {
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-review p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cta-image {
  width: 350px;
  flex-shrink: 0;
}

.cta-image svg { width: 100%; height: auto; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { position: relative; }
.form-group.full-width { grid-column: 1 / -1; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,91,219,0.1);
}

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

.contact-form .btn {
  grid-column: 1 / -1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card > i {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.contact-card a {
  color: var(--primary);
}

.contact-card a:hover { color: var(--primary-dark); }

.contact-map {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-top {
  text-align: center;
  margin-bottom: 50px;
}

.footer-apply-btn {
  font-size: 1rem;
  padding: 16px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-locations ul li a i {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--accent);
}

.footer-credentials {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-credentials span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.footer-credentials span i {
  color: var(--accent);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

.apply-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(50%);
  transform-origin: right center;
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  z-index: 999;
  transition: var(--transition);
}

.apply-float:hover {
  background: var(--primary-dark);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { min-height: 400px; }
  .hero-title { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-illustration { max-width: 350px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .cta-review { justify-content: center; }
  .cta-image { width: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar-phone { font-size: 0.78rem; }

  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .hero { min-height: auto; padding: 0; }
  .hero-title { font-size: 1.8rem; }
  .hero-content h2 { font-size: 1.1rem; }
  .hero-content { padding: 50px 16px; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 24px; }
  .highlight-box { white-space: normal; padding: 3px 10px; font-size: 0.9rem; }

  .about-heading { font-size: 1.5rem; }
  .about-text h1 { font-size: 1.5rem; }
  .section-header h2,
  .section-title { font-size: 1.5rem; }

  .quick-call-inner { flex-direction: column; text-align: center; }
  .quick-call-image { width: 250px; }
  .quick-call-text h2 { font-size: 1.6rem; }

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

  .reviews-wrapper { flex-direction: column; overflow: hidden; }
  .reviews-swiper { width: 100%; }
  .review-summary { width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .apply-float { display: none; }

  .destination-card { min-height: 260px; }
}

@media (max-width: 480px) {
  .top-bar-inner { flex-direction: column; gap: 8px; }

  .hero-title { font-size: 1.4rem; }
  .hero-content h2 { font-size: 0.95rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-content { padding: 40px 14px; }

  .about-heading { font-size: 1.25rem; }

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

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

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }

  .review-badges { flex-direction: column; gap: 12px; }

  .destination-card { min-height: auto; padding: 24px 16px; }
}

/* ============================================
   GALLERY PLACEHOLDER SECTION
   ============================================ */
#gallery { scroll-margin-top: 100px; }

/* ============================================
   INNER PAGE STYLES
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 50%, #5c7cfa 100%);
  padding: 60px 0 50px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.inner-content {
  padding: 60px 0;
}

.inner-content h2 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-light);
  display: inline-block;
}

.inner-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 24px;
}

.inner-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.inner-content ul, .inner-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.inner-content ul li, .inner-content ol li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.7;
}

.inner-content ul li::marker { color: var(--primary-light); }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.content-sidebar {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.content-sidebar h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.sidebar-links { list-style: none; padding: 0; }

.sidebar-links li { margin-bottom: 0; }

.sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
  background: var(--primary);
  color: var(--white);
}

.sidebar-links li a img {
  width: 22px;
  border-radius: 3px;
}

.sidebar-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--white);
  text-align: center;
}

.sidebar-cta h4 { font-size: 1.05rem; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; font-size: 0.85rem; padding: 12px 20px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.value-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.country-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.highlight-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.highlight-card i {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.highlight-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.highlight-card p { font-size: 0.82rem; margin: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.gallery-item i { font-size: 2.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg-gray); }

.faq-question i { transition: transform 0.3s ease; color: var(--primary-light); }

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer p { padding: 16px 20px; margin: 0; }

@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 768px) {
  .page-banner h1 { font-size: 1.6rem; }
  .page-banner { padding: 40px 0 35px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .country-highlights { grid-template-columns: 1fr 1fr; }
}
