/* ==========================================================================
   CORDELIA CRUISES LUXURY LANDING PAGE STYLES
   Primary Color Theme: #A3328A (Royal Magenta / Velvet Plum)
   ========================================================================== */

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

:root {
  /* Brand Color Palette */
  --primary: #A3328A;
  --primary-dark: #7E206A;
  --primary-deep: #59124A;
  --primary-light: #C24BA7;
  --primary-glow: rgba(163, 50, 138, 0.35);
  --primary-soft: rgba(163, 50, 138, 0.08);

  /* Gold & Luxury Accents */
  --gold: #D4AF37;
  --gold-bright: #FFD700;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-light: #FFF6D6;

  /* Neutral Shades */
  --bg-dark: #0B0512;
  --bg-card-dark: #150A21;
  --bg-light: #FBF9FC;
  --surface-white: #FFFFFF;
  --text-main: #1D1526;
  --text-muted: #6B6275;
  --text-light: #EBE5F2;
  --text-gold: #E5C158;

  /* UI Borders & Shadows */
  --border-light: rgba(163, 50, 138, 0.15);
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 5, 18, 0.12);
  --shadow-lg: 0 20px 50px rgba(163, 50, 138, 0.2);
  --shadow-glow: 0 0 25px rgba(163, 50, 138, 0.4);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #3A0C30 0%, #A3328A 50%, #3A0C30 100%);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 1001;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar-item i {
  color: var(--gold-bright);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-btn:hover {
  background: var(--gold-bright);
  color: #000;
  border-color: var(--gold-bright);
}

/* ==========================================================================
   LAYOUT CONTAINER & UTILITIES
   ========================================================================== */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.section-padding {
  padding: 90px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.sub-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(163, 50, 138, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.section-title span {
  color: var(--primary);
  position: relative;
}

.section-desc {
  max-width: 650px;
  margin: 15px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--primary-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(163, 50, 138, 0.5);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #1A0A26;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFE44D 0%, #E6B800 100%);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

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

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 25px rgba(11, 5, 18, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--gold-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -3px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION WITH SCROLLING PHOTO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  background: #0B0512;
  color: #FFFFFF;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 5, 18, 0.4) 0%,
    rgba(163, 50, 138, 0.25) 50%,
    rgba(11, 5, 18, 0.85) 100%
  );
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
}

.hero-text {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 50, 138, 0.35);
  border: 1px solid var(--gold-bright);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 620px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold-bright);
  width: 38px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--gold-glow);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(163, 50, 138, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px var(--primary-glow);
}

.slider-prev { left: 25px; }
.slider-next { right: 25px; }

/* Quick Search Widget Bar */
.search-widget {
  background: rgba(21, 10, 33, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 22px;
  margin-top: -50px;
  position: relative;
  z-index: 100;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 160px;
  gap: 15px;
  align-items: center;
}

.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-select, .search-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-select option {
  background: #1A0A26;
  color: #FFF;
}

.search-select:focus, .search-input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ==========================================================================
   HIGHLIGHTS & FEATURES SECTION
   ========================================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold-bright) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border: 1px solid rgba(163, 50, 138, 0.2);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   CRUISE PACKAGES & ITINERARIES SECTION
   ========================================================================== */
.packages-section {
  background: linear-gradient(180deg, #FBF9FC 0%, #F3ECF5 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.package-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.package-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #FFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-nights {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(11, 5, 18, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-bright);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--gold);
}

.package-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-route {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.package-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.package-highlights {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px solid #F0E6EE;
  padding-top: 15px;
}

.package-highlights li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-highlights li i {
  color: var(--primary);
}

.package-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #F0E6EE;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.price-val span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package-action-btn {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-action-btn:hover {
  background: var(--primary);
  color: #FFF;
}

/* ==========================================================================
   ACCOMMODATION & STATEROOMS SECTION
   ========================================================================== */
.staterooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.room-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

.room-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-info {
  padding: 22px;
}

.room-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-tag {
  background: #F3EBF2;
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ==========================================================================
   ONBOARD EXPERIENCE & ENTERTAINMENT
   ========================================================================== */
.experience-section {
  background: #0B0512;
  color: #FFFFFF;
  position: relative;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.exp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.exp-card:hover {
  background: rgba(163, 50, 138, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-6px);
}

.exp-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--gold-bright);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.exp-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.exp-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testi-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testi-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.testi-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER (EXACT USER REQUESTED DETAILS)
   ========================================================================== */
.footer {
  background: #0B0512;
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 2px solid var(--primary);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-block-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-block-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-contact-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-contact-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.footer-contact-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
  width: fit-content;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-btn:hover {
  color: var(--gold-bright);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-policy-row {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   FLOATING ACTION WIDGETS (WHATSAPP & CALL)
   ========================================================================== */
.floating-widget-group {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.15);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-call {
  background: var(--primary);
}

.floating-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-bright);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ==========================================================================
   MODAL POPUPS (INQUIRY & POLICIES)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 5, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  transform: translateY(30px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFF;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-body {
  padding: 30px;
  color: var(--text-main);
  line-height: 1.7;
}

.modal-body h4 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin: 18px 0 8px;
  font-family: var(--font-serif);
}

.modal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Modal Form Controls */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2D5E5;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* ==========================================================================
   RESPONSIVE MOBILE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .search-form { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(11, 5, 18, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    transition: left 0.4s ease;
    z-index: 999;
  }
  .nav-links.mobile-open { left: 0; }
  .nav-link { color: #FFF; font-size: 1.2rem; }
  .mobile-toggle { display: block; }
}

@media (max-width: 600px) {
  .top-bar-left { display: none; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; }
  .search-form { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .slider-arrow { display: none; }
}
