/* =============================================
   LANKA JP TOURS - Premium Tourism Website
   Custom Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #123a6b;       /* Navy Blue — from logo wordmark "LANKA JP TOURS" */
  --secondary: #1e7a3e;     /* Emerald Green — from logo Sri Lanka map & slogan text */
  --accent: #f0b429;        /* Golden Yellow — from logo sun & circular border */
  --turquoise: #6dc4e8;     /* Sky Blue — from logo background */
  --red-accent: #c0392b;    /* Red — from logo ceremonial elephant */
  --white: #ffffff;
  --light: #eef7fc;
  --gray: #6c757d;
  --dark: #0c2444;
  --gold: #f0b429;
  --gold-light: #f7cc5b;
  --gradient-primary: linear-gradient(135deg, #123a6b 0%, #1c5694 100%);
  --gradient-gold: linear-gradient(135deg, #f0b429 0%, #f7cc5b 100%);
  --gradient-green: linear-gradient(135deg, #1e7a3e 0%, #27ae60 100%);
  --gradient-sky: linear-gradient(135deg, #6dc4e8 0%, #aee3f7 100%);
  --gradient-hero: linear-gradient(180deg, rgba(18,58,107,0.25) 0%, rgba(12,36,68,0.78) 100%);
  --shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 25px rgba(240,180,41,0.35);
  --shadow-green: 0 8px 25px rgba(30,122,62,0.3);
  --shadow-red: 0 8px 25px rgba(18,58,107,0.3);
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-primary: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: var(--accent); color: var(--white); }

/* =============================================
   LOADER
   ============================================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-inner {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
  animation: loaderProgress 2s ease forwards;
}
@keyframes loaderProgress { from { width: 0; } to { width: 100%; } }
.loader-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  #navbar { top: 34px; }
  .hero-content { padding-top: 118px; }
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(12, 36, 68, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-logo-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.navbar-brand:hover .brand-logo-icon img {
  transform: scale(1.06) rotate(-2deg);
}
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.brand-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.navbar-nav {
  flex-wrap: nowrap;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.7rem !important;
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover { color: var(--gold) !important; }
.navbar-nav .dropdown-menu {
  background: rgba(12, 36, 68, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  animation: dropdownFade 0.3s ease;
}
@keyframes dropdownFade { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.navbar-nav .dropdown-item {
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
  background: rgba(240,180,41,0.15);
  color: var(--gold);
}
.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--primary) !important;
  border-radius: 25px !important;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(240,180,41,0.4) !important; }
.nav-cta::after { display: none !important; }
.navbar-toggler {
  border: none;
  padding: 0.3rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger-line {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&q=80'); }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1586788224331-947f68671cf1?w=1920&q=80'); }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1920&q=80'); }
.hero-slide:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1540202404-a2f29016b523?w=1920&q=80'); }
.hero-slide:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,36,68,0.2) 0%, rgba(12,36,68,0.5) 50%, rgba(12,36,68,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.4);
  border-radius: 25px;
  padding: 0.35rem 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-slogan {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.9s both;
}
.hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}
.hero-tag:hover {
  background: rgba(240,180,41,0.2);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease 1.1s both;
}
.btn-primary-custom {
  background: var(--gradient-gold);
  color: var(--primary);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(240,180,41,0.4);
  color: var(--primary);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-dot {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 15px;
  margin: 0 auto 0.5rem;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 28px; opacity: 0.3; }
}
.scroll-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-slider-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: var(--gradient-gold);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-item i { font-size: 1rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
section { padding: 6rem 0; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 25px;
  padding: 0.3rem 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--accent); }
.section-title .italic { font-style: italic; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
  margin: 1.5rem 0;
}
.section-divider.center { margin: 1.5rem auto; }

/* =============================================
   CHAIRMAN SECTION
   ============================================= */
#chairman {
  background: var(--light);
  position: relative;
  overflow: hidden;
}
#chairman::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--gradient-primary);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.chairman-image-wrap {
  position: relative;
  z-index: 1;
}
.chairman-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.chairman-image-placeholder {
  width: 100%;
  height: 500px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.chairman-image-placeholder i { font-size: 5rem; opacity: 0.4; margin-bottom: 1rem; }
.chairman-content { position: relative; z-index: 1; padding-left: 2.5rem; }
.chairman-quote-icon {
  position: absolute;
  top: -1.75rem;
  left: 0;
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: var(--font-primary);
  line-height: 1;
}
.chairman-message {
  font-family: var(--font-elegant);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.85;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.chairman-bio {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--gray);
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.chairman-signature {
  font-family: var(--font-elegant);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--primary);
}
.chairman-title {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
}
@media (max-width: 991px) {
  .chairman-content { padding-left: 0; padding-top: 2rem; }
  .chairman-quote-icon { top: -0.5rem; left: 0; }
}

.highlight-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
}
.highlight-photo-card:hover { transform: translateY(-5px); }
.highlight-photo-card:hover .highlight-photo-overlay { background: linear-gradient(to top, rgba(10,35,66,0.9), rgba(10,35,66,0.25)); }
.highlight-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.85), rgba(10,35,66,0.15));
  transition: var(--transition);
}
.highlight-photo-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  text-align: center;
  width: 100%;
}

/* =============================================
   MANAGEMENT TEAM
   ============================================= */
.team-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--gold);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: var(--gradient-primary);
}
.team-role {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-photo-sm {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--accent);
  background: var(--gradient-primary);
}
.team-name {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}
.team-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .team-photo { width: 160px; height: 160px; }
  .team-card { flex-direction: column; align-items: center; text-align: center; }
}

/* =============================================
   STATS SECTION
   ============================================= */
#stats {
  background: linear-gradient(135deg, #0c2444 0%, #123a6b 50%, #1e7a3e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-card:last-child::after { display: none; }
.stat-number {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.stat-icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why-us { background: var(--white); }
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,180,41,0.3);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--primary);
  transform: rotateY(360deg);
}
.feature-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   TOURS SECTION
   ============================================= */
#tours { background: var(--light); }
.tour-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.tour-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-image img { transform: scale(1.08); }
.tour-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
}
.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.tour-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(12,36,68,0.8);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.tour-body { padding: 1.5rem; }
.tour-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.tour-highlight-tag {
  background: rgba(30,122,62,0.08);
  color: var(--secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  gap: 0.5rem;
}
.btn-inquire {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-inquire:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  color: var(--white);
}
.tour-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.tab-btn {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.08);
  color: var(--gray);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

/* =============================================
   DESTINATIONS
   ============================================= */
#destinations { background: var(--white); }
.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: var(--transition);
}
.destination-card:hover { transform: scale(1.02); }
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-card:hover img { transform: scale(1.1); }
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,36,68,0.9) 100%);
  transition: var(--transition);
}
.destination-card:hover .destination-card-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(12,36,68,0.95) 100%);
}
.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.destination-name {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.destination-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.destination-card:hover .destination-desc {
  opacity: 1;
  transform: translateY(0);
}
.destination-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition);
}
.destination-card:hover .destination-arrow {
  opacity: 1;
  transform: translateY(0);
}
.destination-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* =============================================
   CAR RENTAL
   ============================================= */
#car-rental {
  background: var(--light);
  position: relative;
}
.vehicle-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.vehicle-image {
  height: 180px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.vehicle-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(12,36,68,0.3));
}
.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-body { padding: 1.25rem; }
.vehicle-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.vehicle-name {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.vehicle-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vehicle-feature {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--gray);
}
.vehicle-feature i { color: var(--secondary); }

/* =============================================
   EVENTS
   ============================================= */
#events { background: var(--primary); position: relative; overflow: hidden; }
#events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.event-card:hover {
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-6px);
}
.event-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--gold);
  transition: var(--transition);
}
.event-card:hover .event-icon {
  background: var(--gradient-gold);
  color: var(--primary);
}
.event-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.event-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* =============================================
   GALLERY
   ============================================= */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 0.75rem;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--gradient-primary);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,36,68,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--white);
  background: rgba(240,180,41,0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: var(--light); }
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: var(--font-primary);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-stars { color: #ffc107; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}
.testimonial-country {
  font-size: 0.78rem;
  color: var(--gray);
}

/* =============================================
   INQUIRY POPUP
   ============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.97);
  transition: var(--transition);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray);
  transition: var(--transition);
}
.popup-close:hover { background: var(--primary); color: var(--white); }
.popup-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.popup-subtitle { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(30,122,62,0.1);
}
.form-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
}
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(30,122,62,0.1);
}
.popup-send-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.send-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}
.send-btn:hover { transform: translateY(-3px); }
.send-btn.whatsapp { background: #e8faf1; color: #128c7e; }
.send-btn.whatsapp:hover { background: #25d366; color: var(--white); }
.send-btn.telegram { background: #e8f4fd; color: #0088cc; }
.send-btn.telegram:hover { background: #0088cc; color: var(--white); }
.send-btn.email { background: rgba(240,180,41,0.1); color: var(--primary); }
.send-btn.email:hover { background: var(--gradient-gold); color: var(--primary); }
.send-btn i { font-size: 1.4rem; }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact { background: var(--white); }
.contact-info-card {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.contact-form-card {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.contact-method-value { font-weight: 600; color: var(--white); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.float-btn:hover { transform: scale(1.15) translateY(-3px); }
.float-btn.whatsapp { background: #25d366; color: var(--white); }
.float-btn.telegram { background: #0088cc; color: var(--white); }
.float-btn.scroll-top { background: var(--gradient-gold); color: var(--primary); opacity: 0; pointer-events: none; transition: var(--transition); }
.float-btn.scroll-top.visible { opacity: 1; pointer-events: all; }
.float-btn-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.8);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.float-btn:hover .float-btn-tooltip { opacity: 1; }
.float-btn-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,0,0,0.8);
}
.float-btn-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
}
.float-btn.whatsapp .float-btn-pulse { background: rgba(37,211,102,0.3); }
.float-btn.telegram .float-btn-pulse { background: rgba(0,136,204,0.3); }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =============================================
   TRAVEL AGENTS SECTION
   ============================================= */
#travel-agents { background: var(--light); }
.agent-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 0.75rem;
}
.agent-benefit:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.agent-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.agent-benefit-title { font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 0.2rem; }
.agent-benefit-desc { font-size: 0.82rem; color: var(--gray); }

/* =============================================
   NEWSLETTER
   ============================================= */
#newsletter {
  background: var(--gradient-gold);
  padding: 4rem 0;
}
.newsletter-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.newsletter-subtitle { color: rgba(12,36,68,0.7); font-size: 1rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
}
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  box-shadow: var(--shadow-sm);
}
.newsletter-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--dark); transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark);
  padding-top: 4rem;
}
.footer-brand-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-tagline { font-size: 0.78rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gradient-gold);
  color: var(--primary);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-link i { font-size: 0.6rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  margin-top: 3rem;
}
.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-link:hover { color: var(--gold); }
.certified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-animation { animation: float 4s ease infinite; }

/* =============================================
   UTILITIES
   ============================================= */
.text-gold { color: var(--gold) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(240,180,41,0.4);
  color: var(--primary);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.view-all-wrap { text-align: center; margin-top: 2.5rem; }
.section-bg-pattern {
  position: relative;
  overflow: hidden;
}
.section-bg-pattern::before {
  content: 'SRI LANKA';
  position: absolute;
  font-family: var(--font-primary);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(0,0,0,0.025);
  letter-spacing: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.z-1 { position: relative; z-index: 1; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  section { padding: 4rem 0; }
  #chairman::before { display: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .newsletter-form { flex-direction: column; }
  .popup-send-options { grid-template-columns: 1fr; }
  .stat-card::after { display: none; }
  .footer-bottom-links { justify-content: flex-start; margin-top: 0.75rem; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .floating-buttons { bottom: 1.25rem; right: 1.25rem; }
  .float-btn { width: 48px; height: 48px; font-size: 1.3rem; }
  .stat-number { font-size: 2.5rem; }
}
@media (max-width: 575px) {
  .popup-box { padding: 1.75rem; }
  .tour-category-tabs { justify-content: flex-start; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar-nav .nav-link { font-size: 0.78rem; padding: 0.5rem 0.5rem !important; }
  .nav-cta { padding: 0.5rem 1rem !important; font-size: 0.78rem !important; }
  .brand-logo-icon, .brand-logo-icon img { width: 78px; height: 78px; }
  .brand-name { font-size: 1.3rem; }
  .brand-tagline { font-size: 0.62rem; letter-spacing: 1px; }
}
