/* ========================================
   SOFI MOUNTAIN ADVENTURE - Design System
   ======================================== */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Custom Properties */
:root {
  --primary: #1785e2;
  --primary-dark: #1268b5;
  --secondary: #dd982a;
  --secondary-dark: #c0831d;
  --hover-accent: #e83306;
  --footer-bg: #09094f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #eef1f5;
  --gray: #6c757d;
  --dark: #1a1a2e;
  --text: #333333;
  --text-light: #555555;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-card: 0 4px 24px rgba(23,133,226,0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header-logo img {
  width: 122px;
  height: 90px;
  object-fit: contain;
  transition: height var(--transition);
}

.header.scrolled .header-logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 550px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 6s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 110px 20px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  max-width: 700px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(0.88rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(23,133,226,0.35);
}

.btn-primary:hover {
  background: var(--hover-accent);
  box-shadow: 0 4px 24px rgba(232,51,6,0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(221,152,42,0.35);
}

.btn-secondary:hover {
  background: var(--hover-accent);
  box-shadow: 0 4px 24px rgba(232,51,6,0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-email {
  background: var(--secondary);
  color: var(--white);
}

.btn-email:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Hero Dots Navigation */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dots span.active {
  background: var(--secondary);
  transform: scale(1.2);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(23,133,226,0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--primary), #3da5f5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), #f0b84d);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-content .btn {
  margin-top: 12px;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-card-img img {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.package-card-body {
  padding: 24px;
}

.package-card-body h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.package-card-body .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.package-card-body .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray);
}

.package-card-body .btn {
  width: 100%;
  justify-content: center;
}

/* Package Category Tabs */
.package-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.package-tab {
  padding: 10px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.package-tab.active,
.package-tab:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(23,133,226,0.12), rgba(23,133,226,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: all var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

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

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--footer-bg) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.04)"/><circle cx="80" cy="60" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="90" r="2" fill="rgba(255,255,255,0.02)"/></svg>');
  background-size: 100px 100px;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.8;
  position: relative;
}

.cta-section .cta-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 28px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-col .footer-contact-item span.icon {
  font-size: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

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

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  padding-left: 0;
}

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

.footer-bottom a {
  color: var(--secondary);
  display: inline;
  padding: 0;
}

.footer-bottom a:hover {
  color: var(--white);
  padding-left: 0;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}

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

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(23,133,226,0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ========================================
   PAGE BANNER (Inner Pages)
   ======================================== */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--footer-bg) 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-banner h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.page-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  position: relative;
}

/* ========================================
   PACKAGE DETAIL PAGE
   ======================================== */
.package-detail {
  padding: 60px 0 80px;
}

.package-detail-header {
  margin-bottom: 40px;
}

.package-detail-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.package-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 480px;
}

.package-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-detail-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.package-main h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  margin-top: 36px;
}

.package-main h2:first-child {
  margin-top: 0;
}

.package-main p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 14px;
}

.package-main .description-text {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* Itinerary */
.itinerary-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

.itinerary-item:hover {
  border-left-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.itinerary-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.itinerary-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Inclusions & Exclusions */
.inclusions-exclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.inc-exc-box {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
}

.inc-exc-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark);
}

.inc-exc-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inc-exc-box ul li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.inc-exc-box.inclusions ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.inc-exc-box.exclusions ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* Sidebar */
.package-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.sidebar-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.sidebar-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.sidebar-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
}

.sidebar-hotel {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

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

.contact-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(23,133,226,0.12), rgba(23,133,226,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

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

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

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

.contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.contact-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--hover-accent);
  transform: translateY(-3px);
}

/* ========================================
   POLICY PAGES
   ======================================== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  margin-top: 36px;
}

.policy-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.policy-content ul {
  margin-bottom: 18px;
}

.policy-content ul li {
  font-size: 0.98rem;
  color: var(--text-light);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.7;
}

.policy-content ul li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-weight: 700;
}

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

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

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.about-page-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  margin-top: 36px;
}

.about-page-content h2:first-child {
  margin-top: 0;
}

.about-page-content p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-page-content ul {
  margin-bottom: 18px;
}

.about-page-content ul li {
  font-size: 0.98rem;
  color: var(--text-light);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.7;
}

.about-page-content ul li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-weight: 700;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px 40px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    transition: right var(--transition);
    gap: 0;
    align-items: stretch;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .package-detail-content {
    grid-template-columns: 1fr;
  }

  .package-sidebar {
    position: static;
  }

  .inclusions-exclusions {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 480px;
    max-height: 750px;
  }

  .hero-content {
    padding: 100px 16px 70px;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.65rem;
    line-height: 1.25;
    max-width: 90%;
  }

  .hero-content p {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 95%;
    margin-bottom: 24px;
  }

  .hero-content .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .hero-dots {
    bottom: 20px;
  }

  .hero-dots span {
    width: 10px;
    height: 10px;
  }

  .section-header {
    margin-bottom: 36px;
  }

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

  .service-card {
    padding: 24px 16px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

  .page-banner {
    padding: 120px 0 50px;
  }

  .package-detail-img {
    max-height: 280px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }

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

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    min-height: 420px;
    max-height: 680px;
  }

  .hero-content {
    padding: 90px 14px 60px;
  }

  .hero-content h1 {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

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

  .header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-logo img {
    width: 100px;
    height: 74px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .package-tabs {
    gap: 8px;
  }

  .package-tab {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

/* Mobile Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}
