/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
  /* Primary Colors */
  --color-navy: #0A2540;
  --color-sky: #38BDF8;
  --color-sky-light: #7DD3FC;

  /* Neutral */
  --color-white: #FFFFFF;
  --color-gray-100: #F8FAFC;
  --color-gray-200: #E5E7EB;
  --color-gray-700: #4B5563;
  --color-gray-900: #111827;

  /* Text Colors */
  --text-primary: var(--color-gray-900);
  --text-secondary: var(--color-gray-700);
  --text-inverse: var(--color-white);
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}


/* fonts */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-navy);
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.8rem; /* Big hero size */
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

h5 {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Paragraphs */
p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1em;
}

/* Links */
a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
}

a:hover {
  color: var(--color-sky);
  text-decoration: none;
}

/* Buttons */
/* Base Button */
button, .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  border: none;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: 50px; /* pill-shaped */
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.6);
  background: linear-gradient(135deg, #0A2540, #38BDF8); /* subtle gradient swap on hover */
  color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.wide-container {
  max-width: 1800px;
  margin: auto;
  padding: 0 30px;
}

/* header wrapper */
.header-wrapper {
  display: flex;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0px;
  z-index: 50;
  overflow: hidden;
}

.logo-vertical {
  width: max-content;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  background-color: #fff;
  padding-right: 40px;
  padding-left: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
  transition: all 0.35s ease;
  z-index: 1;
}

/* Sharp diagonal edge */
.logo-vertical img {
  max-width: 114px;
  z-index: 2;
  transition: all 0.35s ease;
}

.header-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.top-bar {
  background: var(--color-navy);
  color: #fff;
  padding: 10px 30px;
  font-size: 14px;
  transition: 
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.35s ease,
    padding 0.35s ease;
  transform: translateY(0);
  max-height: 70px; /* whatever original height is */
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 220px;
    height: 100%;
    background: #fff;
    transform: skewX(337deg);
}

span.header-icon svg {
  fill: #fff;
  width: 24px;
}

span.header-icon {
    display: flex;
}

.header-contact-wrap, .header-time-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-left-wrap {
    margin-left: 280px;
}

.top-bar a {
  color: #fff;
  font-weight: 500;
}

/* Header sticky active time */
header.header-wrapper.header-sticky-active .top-bar {
  opacity: 0;
  transform: translateY(-100%);
  max-height: 0;
  padding: 0;
  pointer-events: none;
}

header.header-wrapper.header-sticky-active  .logo-vertical {
  max-height: 80px;
}

header.header-wrapper.header-sticky-active  .logo-vertical img {
  max-width: 70px;
}

header.header-wrapper.header-sticky-active .logo-vertical::after {
  display: none;
}

header.header-wrapper.header-sticky-active  .nav-row {
  height: 80px;
}

/* Language Switcher */
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 14px;
}

/* "We speak" label */
.language-switch .label {
  padding: 6px 10px;
  font-weight: 600;
  opacity: 0.8;
  white-space: nowrap;
}

/* Language button */
.lang-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  /* cursor: pointer; */
  transition: all 0.25s ease;
  background: transparent;
}


/* Flag icon */
.lang-option img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

/* Language text */
.lang-option span {
  font-weight: 600;
}

/* Top-right language indicator */
.contact-section-lang-switch {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  z-index: 2;
}

/* Label */
.contact-section-lang-switch .label {
  font-weight: 600;
  opacity: 0.85;
}

/* Language pill */
.contact-section-lang-switch .lang-option {
  pointer-events: none;
  padding: 4px 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Active look */
.contact-section-lang-switch .lang-option.active {
  background: rgba(255, 255, 255, 0.3);
}

/* Flag */
.contact-section-lang-switch img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}


@media (max-width: 480px) {
  .contact-section-lang-switch {
    position: static;
    margin-bottom: 10px;
  }
}


/* Hover effect */
/* .lang-option:hover {
  background: rgba(255, 255, 255, 0.15);
} */

/* Active language */
.lang-option.active {
  background: #ffffff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Header */
.header {
  background: var(--color-white);
  border-bottom: 1px solid #e5e7eb;
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* .top-bar {
    padding: 10px;
    height: 40px;
}

.top-bar-inner-wrap {
    display: flex;
    justify-content: space-between;
}

.top-bar-right-wrap {
    display: flex;
    gap: 10px;
}

.top-bar-right-wrap a {
    color: #fff;
} */

/* Logo */
.logo img {
    max-width: 220px;
    padding: 5px;
}

/* Nav */
.nav-row {
  height: 75px;
  display: flex;
  align-items: center;
  transition: height 0.35s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}


/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 500;
}

.nav a:hover, .nav a.active-nav-link {
  color: var(--color-sky);
}

/* Contact Button */
.btn-contact {
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.6);
}

/* Hamburger */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-navy);
}

@media (max-width: 992px) {
  .header-wrapper {
    flex-direction: column;
  }

  .logo-vertical {
    width: auto;
    justify-content: center;
    padding-bottom: 0;
  }

  .logo-vertical::after {
    display: none;
  }
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

img.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 20px;
  color: #FFFFFF;
}

/* Badge style */
.hero-badge {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

/* Hero CTA Button */
.hero-cta {
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.6);
}


.hero-btn-wrap {
  display: flex;
  gap: 15px;
}

/* Main heading */
.hero-text-wrap h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Small animation (optional but modern) */
.hero-text-wrap {
  animation: fadeUp 1s ease-out;
}

.mobile-only-top-bar-details-wrap {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 1199px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid #e5e7eb;
  }

  #menu-toggle:checked + .hamburger + .nav {
    z-index: 10;
    border-bottom: 20px solid var(--color-sky);
  }

  /* Rotate top line */
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

/* Hide middle line */
#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

/* Rotate bottom line */
#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

}

/* --------------------------------- Second Section --------------------------------- */
/* Section wrapper */
.info-section {
  background: #F8FAFC;
  padding: 80px 0;
}

/* Layout */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

/* Reverse layout */
.info-block.reverse {
  direction: rtl;
}
.info-block.reverse .info-content {
  direction: ltr;
}

/* Image */
.info-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Text area */
.info-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.info-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Quote styling */
.quote {
  font-style: italic;
  font-size: 1.05rem;
  border-left: 4px solid #38BDF8;
  padding-left: 18px;
  margin-bottom: 10px;
}

.quote-author {
  display: block;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 25px;
}

/* Read More Button */
.read-more {
  display: inline-block;       /* ensure transform works */
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;       /* remove underline */
  text-align: center;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* animate transform + shadow */
  cursor: pointer;
}

.read-more:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.6);
}


/* Responsive */
@media (max-width: 1199px) {
  .info-block {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .info-block.reverse {
    direction: ltr;
    margin-bottom: 30px;
  }

  .info-content h2 {
    font-size: 1.8rem;
  }
}


/* --------------------------------------------- Package Section --------------------------------------------- */
/* Package Section */
.package-section {
  background: #FFFFFF;
  padding: 90px 0;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: #E0F2FE;
  color: #0A2540;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.4rem;
}

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.package-card {
  background: #F8FAFC;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Best package highlight */
.best-package {
  background: linear-gradient(180deg, #0A2540, #081C33);
  color: #FFFFFF;
  border: none;
  position: relative;
  transform: scale(1.05);
}

.best-package h3,
.best-package p {
  color: #FFFFFF;
}

/* Best label */
.best-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #38BDF8;
  color: #0A2540;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Text */
.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-sub {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.package-price span {
  font-size: 0.85rem;
  font-weight: 400;
}

.package-save {
  font-size: 0.95rem;
  font-weight: 600;
  color: #7DD3FC;
  margin-bottom: 25px;
}

.multiple-package-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

/* Primary Buy Button */
.btn-buy {
  display: inline-block;
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: 50px;        /* pill shape */
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.btn-buy:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.6);
  background: linear-gradient(135deg, #0A2540, #38BDF8); /* subtle gradient swap */
}

/* Outline Buy Button */
.btn-buy-outline {
    display: flex;
    border: 2px solid #38BDF8;
    color: #0A2540;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.2);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

.btn-buy-outline:hover {
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45); /* slightly stronger shadow */
  /* no translateY */
}


/* Responsive */
@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .best-package {
    transform: none;
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------- Zoom Class Section ------------------------- */
/* ===========================
   Zoom Class Section
=========================== */

.zoom-class-section {
  background: #F8FAFC;
  padding: 90px 0;
}

/* Header */
.zoom-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.zoom-header h2 {
  font-size: 2.4rem;
  margin-top: 15px;
}

/* Badge */
.zoom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
}

/* Animated dot */
.zoom-dot {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Image */
.zoom-image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  margin-bottom: 40px;
}

/* Content */
.zoom-content {
  text-align: center;
  max-width: 720px;
  margin: auto;
}

.zoom-content p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #4B5563;
}

/* Note */
.zoom-note {
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 35px;
}

/* CTA Button */
.btn-contact-large {
  display: inline-block;
  background: linear-gradient(135deg, #38BDF8, #0A2540);
  color: #FFFFFF;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.45);
  transition: all 0.3s ease;
}

.btn-contact-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(56, 189, 248, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .zoom-header h2 {
    font-size: 2rem;
  }

  .zoom-image-wrap img {
    max-height: 360px;
  }

  .zoom-class-section {
    padding: 50px 0;
  }
}

/* ------------------------------------- Reviews Section -------------------------------------------- */
/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--color-navy);
  /* background-color: rgba(0,0,0,0.08); */
}

/* Section Title */
.reviews-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--color-white);
}

/* Review Card */
.review-card {
  background: #FFFFFF;
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 200px;
}

.review-text {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: #0A2540;
  font-size: 0.95rem;
  text-align: right;
}

/* Reviews CTA */
.reviews-cta {
  margin-top: 40px;
}

/* Splide Navigation */
.reviews-section .splide__arrow {
  background: #38BDF8;
  color: #0A2540;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.reviews-section .splide__pagination__page {
  background: #38BDF8;
  opacity: 0.6;
}

.reviews-section .splide__pagination__page.is-active {
  opacity: 1;
}

.reviews-section .splide__arrow--next {
    right: -5em;
}

.reviews-section .splide__arrow--prev {
    left: -5em;
}

.reviews-section .splide__pagination {
  bottom: -1.5em;
}
/* ------------------------------------ Contact Section ------------------------------- */
/* Contact Clean */
.contact-clean {
  padding: 90px 0;
  background: #f8fafc;
  color: #0a2540;
  font-family: 'Inter', sans-serif;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.call-btn {
  color: #fff;
}

.call-btn:hover {
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
}

a.action-btn {
  display: flex !important;
  gap: 5px;
  align-items: center;
}

a.action-btn.call-btn {
  background-color: var(--color-sky);
}

a.action-btn.call-btn:hover {
  background-color: #0EA5E9;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
}

.contact-header p {
  color: #475569;
  margin-top: 8px;
}

/* Grid */
.contact-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Info */
.contact-clean-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-phone {
  position: relative;
}

.contact-phone span {
  font-size: 14px;
  color: #64748b;
}

.contact-phone a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a2540;
  text-decoration: none;
}

.contact-address p {
  font-size: 15px;
  line-height: 1.6;
}

/* Social */
.contact-social {
  display: flex;
  gap: 14px;
}

.contact-social .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.contact-social .social-icon:hover {
  transform: translateY(-3px);
}

/* Form */
.contact-clean-form {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-clean-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#contactForm input,
#contactForm textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  width: 100%;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #38bdf8;
  outline: none;
}

.text-success {
  color: #25D366;
}

.text-danger {
  color: red;
}

/* Map */
.contact-clean-map {
  margin-top: 50px;
}

.contact-clean-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 18px;
}

.contact-map-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.map-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.map-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 6px;
}

.map-subtext {
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
}

.map-card iframe {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  border: none;
}

/* Highlight meeting location subtly */
.highlight-map {
  border: 2px solid #38bdf8;
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-map-group {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .contact-clean-grid {
    grid-template-columns: 1fr;
  }

  .contact-phone a {
    font-size: 1.5rem;
  }

}

.highlight-call {
  background: linear-gradient(135deg, #e0f2fe, #f8fafc);
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid #bae6fd;
}

.highlight-call a {
  font-size: 2rem;
  font-weight: 700;
  color: #38BDF8; /* Matches your theme accent */
  text-decoration: none;
}

.highlight-call p {
  font-size: 1rem;
  color: #0A2540;
}


.call-badge {
  background: #38BDF8;
  color: #ffffff !important;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 8px;
}


.highlight-call a {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0a2540;
  margin: 6px 0;
}

.highlight-call p {
  font-size: 14px;
  color: #475569;
}

.map-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0a2540;
}

.contact-clean-form h3,
.contact-clean-info strong {
  color: #0a2540;
}

.button.btn-contact {
  background: #38BDF8;
  color: #0A2540;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button.btn-contact:hover {
  background: #0A2540;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-map-group h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0A2540;
}

.map-subtext {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 12px;
}

.contact-map-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-map-group {
    grid-template-columns: 1fr;
  }
}

.contact-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #38BDF8;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #0A2540;
  transform: scale(1.1);
}


/* ------------------------------------------------------------ Gift Section ---------------------------------------- */

.gift-section {
  background: #F8FAFC;
  padding: 80px 0;
}

.gift-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.gift-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 15px;
}

.gift-header p {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

.gift-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gift-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.gift-card.featured {
  border: 2px solid #38BDF8;
}

.gift-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #38BDF8;
  color: #0A2540;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.gift-badge.savings {
  background: #22C55E;
  color: #FFFFFF;
}

.gift-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0A2540;
}

.gift-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.gift-card ul li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

.gift-price {
  font-size: 40px;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 20px;
}

.gift-note {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 25px;
}


/* --------------------------------------- FAQ Section --------------------------------------------- */
.faq-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 10px;
}

.faq-header p {
  color: #475569;
  font-size: 16px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #F8FAFC;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #0A2540;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #38BDF8;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 24px 22px;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

.faq-content p {
  margin-bottom: 12px;
}


/* ----------------------------------------- Site Footer ------------------------------- */
.site-footer {
  background: #0A2540;
  color: #CBD5E1;
  padding: 70px 0 30px;
  font-family: 'Inter', sans-serif;
}

.footer-bottom a {
  color: #38BDF8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-separator {
  margin: 0 8px;
  opacity: 0.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo */
.footer-logo {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Columns */
.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #38BDF8;
}

/* Social Icons */
.contact-social.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  justify-content: flex-start;
}

.footer-social svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  fill: var(--color-gray-100);
}

.footer-social svg:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

span.footer-icon {
    display: inline-flex;
}

span.footer-icon svg {
    fill: #fff;
    width: 24px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Bottom Line */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 0;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #38BDF8;
  color: #0A2540;
  font-size: 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show button */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#backToTop:hover {
  background: #0A2540;
  color: #ffffff;
  transform: translateY(-4px);
}


/* Responsive */
@media (max-width: 1199px) {

  .footer-grid {
    gap: 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .reviews-section .splide__arrow--next {
    right: 0;
    top: 23em;
  }
  .reviews-section .splide__arrow--prev {
    left: 0;
    top: 23em;
  }
  .btn-buy-outline {
    position: relative;
    bottom: 0;
  }

  .header-wrapper {
    overflow: visible;
  }

  .top-bar {
    height: 100%;
    display: none;
  }

  .logo-vertical img {
    height: 62px;
  }

  .top-bar-inner-wrap {
    flex-direction: column;
  }

  .logo img {
    max-width: 140px;
  }

  .hero-btn-wrap {
    flex-direction: column;
  }

  .info-section {
    padding: 30px 0px;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 10;
  }

  div#reviews-slider {
    min-height: 320px;
  }

  .hero-section {
    height: 500px;
  }

  .highlight-call a {
    font-size: 1rem;
  }

  .faq-section, .gift-section, .contact-clean,   .package-section {
    padding: 50px 0px;
  }

  .mobile-only-top-bar-details-wrap {
    display: block;
    width: 100%;
  }

 .mobile-only-top-bar-details-wrap .top-bar-right-wrap {
        flex-direction: column;
        border-top: 1px solid var(--color-sky);
        padding-top: 15px;
    }

  .mobile-only-top-bar-details-wrap span.header-icon svg {
    fill: var(--color-navy);
  }

  header.header-wrapper.header-sticky-active .nav-row {
    height: 75px;
  }

  .nav {
    /* animation setup */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: 
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  #menu-toggle:checked + .hamburger + .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
}


@media screen and (min-width: 769px) and (max-width: 1199px) {
  .container {
    padding-left: 45px;
    padding-right: 45px;
  }

  .reviews-section .splide__arrow--next {
    top: 28em;
  }

  .reviews-section .splide__arrow--prev {
    top: 28em;
  }

  .contact-clean-grid {
    grid-template-columns: 1fr;
  }

   .info-section {
    padding: 50px 0px;
   }
}

