/* =============================== PREMIUM TYPOGRAPHY ================================ */

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================== RESET / BASE ================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
}

/* =============================== SECTION HEADINGS NORMALIZATION ================================ */
section h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

section p {
  margin-top: 0;
}

/* =============================== GLOBAL SECTION SPACING ================================ */
.section {
  padding: 80px 40px;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
}

/* =============================== SECTION HEADER (GLOBAL – USE EVERYWHERE) ================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  text-align: justify;
}


/* ================= HEADER ================= */
/* ================= HEADER (PIXEL-ALIGNED WITH HERO) ================= */

.site-header {
  width: 100%;
  background: #1f2933;
}

/* EXACT SAME ALIGNMENT AS HERO */
.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 🔥 THIS IS THE FIX */

  gap: 5px;

  /* same horizontal rhythm as hero */
  padding: 0px 0px;
}

/* LOGO */
.header-logo {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* TITLE */
.header-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* MOBILE */
@media (max-width: 668px) {
  .site-header .header-inner {
    padding: 2px 2px;

  }

  .header-logo {
    height: 54px;
  }

  .header-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
  }

}



/* =============================== HERO ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("assets/images/heroimage.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 50vh;
    /* was 100vh */
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.45));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

/* =============================== HERO TEXT ================================ */
.hero-text {
  max-width: 620px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 16px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: #e5e7eb;
  text-align: justify;
}

/* =============================== FORM ================================ */
.hero-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-form h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #0f172a;
}

.form-note {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #475569;
  margin-bottom: 14px;
}

.hero-form input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1.6px solid #e5e7eb;
  font-size: 0.95rem;
}

.hero-form input:focus {
  outline: none;
  border-color: #249688;
  background: #ffffff;
}

/* Fix for date input on mobile */
.hero-form input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
  /* Matches the computed height of other inputs */
  color: #0f172a;
  font-family: inherit;
}

.hero-form button {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  border-radius: 50px;
  border: none;
  background: #249688;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-form button:hover {
  background: #1f7f73;
  transform: translateY(-2px);
}



.mobile-form-section {
  display: none;
  /* hidden on desktop */
}


@media (max-width: 900px) {

  /* Hide hero-side form */
  .hero .hero-form {
    display: none;
  }

  /* Show mobile form section */
  .mobile-form-section {
    display: block;
    padding: 60px 20px;
    background: #f8fafc;
  }

  .mobile-form-section .hero-form {
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  }

  .mobile-form-section h3 {
    text-align: center;
  }

  .mobile-form-section .form-note {
    text-align: center;
  }
}



/* =============================== BRAND STATS ================================ */
.brand-stats {
  background: #ffffff;
}

.brand-stats-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ===== GRID ===== */
.brand-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===== CARD ===== */
.brand-stat-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* ===== ICON ===== */
.brand-stat-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #1f9d8b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(31, 157, 139, 0.08);
}

/* ===== NUMBER ===== */
.brand-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1f9d8b;
  margin-bottom: 6px;
}

/* ===== LABEL ===== */
.brand-stat-label {
  font-size: 1.05rem;
  color: #334155;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .brand-stats-grid {
    grid-template-columns: 1fr;
  }

  .brand-stat-number {
    font-size: 2.4rem;
  }
}

/* =============================== PACKAGES ================================ */
.packages {
  background: #f8fafc;
}

.packages-inner {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.packages-header {
  text-align: center;
  margin-bottom: 50px;
}

.packages-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0f172a;
  margin-bottom: 12px;
}

.packages-header p {
  max-width: 680px;
  margin: auto;
  font-size: 1.05rem;
  color: #475569;
}

/* ===== GRID ===== */
.fm-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ===== CARD ===== */
.fm-package {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fm-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ===== IMAGE ===== */
.fm-package-img {
  position: relative;
}

.fm-package-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ===== BADGE ===== */
.fm-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 168, 168, 0.95);
  color: #ffffff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
  z-index: 2;
}

/* ===== CONTENT ===== */
.fm-package-content {
  padding: 26px;
}

.fm-package-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #111827;
}

.fm-price {
  font-size: 16px;
  margin-bottom: 18px;
  color: #374151;
}

.fm-price strong {
  font-size: 22px;
  color: #00a8a8;
}

/* ===== FEATURES ===== */
.fm-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.fm-features li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  color: #374151;
}

.fm-features li span {
  color: #00a8a8;
}

/* ===== BUTTON ===== */
.fm-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: 1.5px solid #00a8a8;
  color: #00a8a8;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.fm-btn:hover {
  background: #00a8a8;
  color: #ffffff;
}

/* ===== POPUP OVERLAY ===== */
.package-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.package-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== POPUP WRAPPER (NO BG) ===== */
.package-popup-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 0;
  background: none;
}

/* ===== CLOSE BUTTON (INSIDE FORM) ===== */
.package-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* =============================== AWARDS ================================ */
.awards {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.awards-inner {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.awards-header {
  text-align: center;
  margin-bottom: 50px;
}

.awards-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #0f172a;
  margin-bottom: 12px;
}

.awards-header p {
  max-width: 680px;
  margin: auto;
  font-size: 1.05rem;
  color: #64748b;
}

/* ===== GRID ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.award-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.12);
}

/* ===== ICON ===== */
.award-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, #249688, #1d7a6e);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(36, 150, 136, 0.4);
}

/* ===== TEXT ===== */
.award-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.award-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  text-align: justify;
}

.award-card span {
  color: #249688;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .awards-header h2 {
    font-size: 1.9rem;
  }
}

/* =============================== KASHMIR DESTINATIONS SECTION ================================ */
.kashmir-section {
  background: #ffffff;
}

.kashmir-section-inner {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER (CENTER ALIGNED) ===== */
.kashmir-header {
  text-align: center;
  margin-bottom: 50px;
}

.kashmir-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.kashmir-header p {
  max-width: 720px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* =============================== HORIZONTAL SCROLL ================================ */
.kashmir-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 0;
  cursor: grab;
  scrollbar-width: none;
}

.kashmir-scroll::-webkit-scrollbar {
  display: none;
}

.kashmir-scroll:active {
  cursor: grabbing;
}

/* =============================== KASHMIR CARD ================================ */
.kashmir-card {
  min-width: 300px;
  height: 420px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* fade-in animation when visible */
.kashmir-card.in-view {
  animation: kashmirFadeUp 0.7s ease forwards;
}

@keyframes kashmirFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hover effect (does NOT break animation) */
.kashmir-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* =============================== OVERLAY ================================ */
.kashmir-overlay {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 65%,
      rgba(0, 0, 0, 0.45) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.kashmir-overlay h3 {
  color: #ffffff;
  font-size: 22px;
  margin: 0 0 4px;
}

.kashmir-overlay span {
  font-size: 11px;
  color: #e5e7eb;
}

/* =============================== MODAL ================================ */
.kashmir-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.kashmir-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.kashmir-modal-box {
  background: #ffffff;
  width: 92%;
  max-width: 970px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s ease;
  position: relative;
}

.kashmir-modal.active .kashmir-modal-box {
  transform: translateY(0) scale(1);
}

.kashmir-modal-img {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
}

.kashmir-modal-content {
  padding: 18px 26px 28px;
}

.kashmir-modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111827;
}

.kashmir-modal-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
  text-align: justify;
}

/* =============================== CTA BUTTONS ================================ */
.kashmir-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.kashmir-cta a {
  width: 100px;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
}

.kashmir-call {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.kashmir-whatsapp {
  background: linear-gradient(135deg, #25d366, #16a34a);
}

/* CLOSE */
.kashmir-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #ffffff;
  z-index: 3;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 768px) {
  .kashmir-card {
    min-width: 260px;
    height: 360px;
  }

  .kashmir-modal-img {
    height: 220px;
  }
}

/* =============================== WHY CHOOSE US / SERVICES ================================ */
.fm-services-section {
  background: #ffffff;
}

.fm-services-inner {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.fm-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* TABLET */
@media (max-width: 1024px) {
  .fm-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .fm-services {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.fm-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  overflow: hidden;
}

.fm-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00a8a8, #1fd1b9);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.fm-card:hover {
  transform: translateY(-8px);
  color: #ffffff;
}

.fm-card:hover::after {
  opacity: 1;
}

/* ICON */
.fm-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f2f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 30px;
  color: #00a8a8;
  transition: 0.35s ease;
  position: relative;
  z-index: 1;
}

/* TEXT */
.fm-card h3,
.fm-card p {
  position: relative;
  z-index: 1;
}

.fm-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.fm-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  text-align: justify;
}

/* =============================== REVIEWS / TESTIMONIALS ================================ */
.fm-reviews-section {
  background: #ffffff;
}

.fm-reviews-inner {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.fm-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

/* CARD */
.fm-review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fm-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.12);
}

/* STARS */
.fm-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 14px;
}

/* REVIEW TEXT */
.fm-review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
  text-align: justify;
}

/* USER */
.fm-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fm-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a8a8, #1fd1b9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.fm-user-info h4 {
  font-size: 16px;
  margin: 0;
  color: #111827;
}

/* =============================== FAQ SECTION ================================ */
.faq-section {
  background: #ffffff;
}

.faq-inner {
  max-width: 1200px;
  margin: auto;
}

/* FAQ WRAP */
.fm-faq-wrap {
  width: 100%;
}

/* FAQ CARD */
.fm-faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.fm-faq-item input {
  display: none;
}

/* QUESTION */
.fm-faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* ICON */
.fm-faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.fm-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}

.fm-faq-content p {
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  text-align: justify;
}

/* OPEN STATE */
.fm-faq-item input:checked~.fm-faq-content {
  max-height: 260px;
}

.fm-faq-item input:checked+.fm-faq-label .fm-faq-icon {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .fm-faq-label {
    font-size: 15px;
    padding: 16px;
  }

  .fm-faq-content {
    padding: 0 16px;
  }
}

/* ================= FOOTER CTA BAND ================= */
/* ================= FULL WIDTH CTA BAND ================= */
.footer-cta-band {
  width: 100%;
  margin: 0;
  background: linear-gradient(135deg,
      #0b1f2a 0%,
      #102e5c 50%,
      #0b1f2a 100%);
}

/* CENTERED CONTENT */
.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  text-align: center;
  color: #ffffff;
}

.footer-cta-inner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.footer-cta-inner button {
  padding: 18px 48px;
  background: #ffffff;
  color: #2563eb;
  border: none;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


footer.footer {
  margin: 0;
  padding: 28px 16px;
  width: 100%;

  background: #0a0a0a;
  color: #b5b5b5;
  text-align: center;
}

footer.footer span {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #8a8a8a;
}

/* ================= FIX FOOTER CTA BREAKAGE ================= */

/* Remove global section padding */
section.footer-cta-band {
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure footer is last element and tight */
footer.footer {
  margin: 0 !important;
  padding-bottom: 28px;
}

/* Kill any accidental spacing after footer */
body>*:last-child {
  margin-bottom: 0 !important;
}



/* DEFAULT — ALWAYS VISIBLE */
.fade-slide {
  opacity: 1;
  transform: none;
}

/* MOBILE ONLY — animate */
@media (max-width: 768px) {
  .fade-slide {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-slide.in-view {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ================= MOBILE SLIDE-IN ANIMATION ================= */
@media (max-width: 768px) {

  .fm-package,
  .fm-card,
  .award-card,
  .fm-review-card {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }

  .fm-package.in-view,
  .fm-card.in-view,
  .award-card.in-view,
  .fm-review-card.in-view {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= FLOATING CTA BUTTONS ================= */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.floating-buttons a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-buttons a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* ICON SIZE */
.floating-buttons svg {
  width: 26px;
  height: 26px;
}

/* ================= CALL BUTTON ================= */
.call-button {
  background: #0b5ed7;
  /* premium call blue */
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-button {
  background: #25D366;
  /* OFFICIAL WhatsApp green */
}

/* ================= MOBILE ALIGNMENT FIXES ================= */
@media (max-width: 768px) {
  /* Force center alignment for headers and short card text on mobile 
     to avoid "left-aligned" look caused by justification */

  .section-header p,
  .award-card p,
  .fm-card p {
    text-align: center !important;
  }
}



/* ================= DESKTOP ALIGNMENT FIXES ================= */
@media (min-width: 901px) {
  .section-header p,
  .award-card p,
  .fm-card p {
    text-align: center;
  }
}
