/* ==========================================================================
   HTM TRAVELS - Premium Travel Agency Style Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --primary-navy: #0B2C5D;
  --secondary-royal: #123E7C;
  --accent-gold: #D4A017;
  --accent-gold-light: rgba(212, 160, 23, 0.1);
  --accent-gold-glow: rgba(212, 160, 23, 0.4);
  --white: #FFFFFF;
  --light-gray: #F8F9FB;
  --dark-slate: #0F172A;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  /* Fonts */
  --font-headings: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout Spacing */
  --section-padding: 7.5rem 0;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 6px -1px rgba(11, 44, 93, 0.05), 0 2px 4px -1px rgba(11, 44, 93, 0.03);
  --shadow-md: 0 12px 20px -3px rgba(11, 44, 93, 0.08), 0 4px 6px -2px rgba(11, 44, 93, 0.04);
  --shadow-lg: 0 30px 50px -10px rgba(11, 44, 93, 0.12), 0 10px 15px -5px rgba(11, 44, 93, 0.06);
  --shadow-gold: 0 10px 30px -5px rgba(212, 160, 23, 0.3);
  --shadow-glass: 0 8px 32px 0 rgba(11, 44, 93, 0.06);
}

/* --------------------------------------------------------------------------
   2. Reset & General Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. Typography & Elegant Accents
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

/* Section Title Component */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 10px;
  background-color: var(--primary-navy);
  border-left: 2px solid var(--accent-gold);
  border-right: 2px solid var(--accent-gold);
}

/* --------------------------------------------------------------------------
   4. Reusable Layout Elements
   -------------------------------------------------------------------------- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. Buttons & Interactive Elements (Ripple / Glow / Gold Hover)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-medium);
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--white);
  border: 1px solid var(--primary-navy);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--secondary-royal);
  border-color: var(--secondary-royal);
  box-shadow: 0 8px 20px rgba(18, 62, 124, 0.35);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-gold:hover::after {
  transform: scaleY(1);
}

.btn-gold:hover {
  box-shadow: 0 12px 24px rgba(212, 160, 23, 0.5);
  transform: translateY(-2px);
  background-color: #b8860b;
  border-color: #b8860b;
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-blue {
  border: 1px solid var(--primary-navy);
  color: var(--primary-navy);
  background: transparent;
}

.btn-outline-blue:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   6. Sticky Navbar
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  transition: var(--transition-medium);
}

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

/* Elegant Logo styling */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 80px;
  width: auto;
  transition: var(--transition-medium);
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-navy);
  letter-spacing: 0.05em;
  transition: var(--transition-medium);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-medium);
}

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

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

.nav-link.active {
  color: var(--secondary-royal);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-navy);
  transition: var(--transition-medium);
  transform-origin: center;
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding-top: 140px;
}

/* Dark blue overlay gradient */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 44, 93, 0.92) 0%, rgba(18, 62, 124, 0.8) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--accent-gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}



@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   8. Services Section (Glassmorphism & Gold border hover effect)
   -------------------------------------------------------------------------- */
.services-section {
  padding: var(--section-padding);
  background-color: var(--white);
  position: relative;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(11, 44, 93, 0.06);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

/* Subtle gold accent top border overlay on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), #b8860b);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 160, 23, 0.3);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(18, 62, 124, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition-medium);
  color: var(--primary-navy);
}

.service-icon-wrapper svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  transition: var(--transition-medium);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  transform: rotateY(180deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

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

/* --------------------------------------------------------------------------
   9. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.why-feature-card {
  display: flex;
  gap: 1.25rem;
  background-color: var(--white);
  padding: 2.25rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

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

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.why-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* Stats Counter Sub-section */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-royal) 100%);
  border-radius: 8px;
  padding: 4rem 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   10. About Company Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 12px solid rgba(212, 160, 23, 0.1);
  pointer-events: none;
  box-sizing: border-box;
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-content {
  padding-left: 1rem;
}

.about-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.highlight-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.highlight-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   11. How It Works Section
   -------------------------------------------------------------------------- */
.how-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: rgba(18, 62, 124, 0.1);
  z-index: 1;
}

.timeline-step {
  width: 28%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-wrapper {
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border: 2px solid rgba(18, 62, 124, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  transition: var(--transition-medium);
}

.timeline-step:hover .step-number-wrapper {
  border-color: var(--accent-gold);
  background-color: var(--primary-navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.timeline-step:hover .step-number {
  color: var(--accent-gold);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

/* --------------------------------------------------------------------------
   12. Testimonials Section (Carousel Slider)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%;
}

.testimonial-slide {
  width: 33.3333%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 44, 93, 0.05);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  left: 3rem;
  font-size: 5rem;
  color: rgba(18, 62, 124, 0.04);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-dark);
  font-style: italic;
  font-family: var(--font-headings);
  margin-bottom: 2.5rem;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.client-info {
  text-align: left;
}

.client-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

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

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(18, 62, 124, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--accent-gold);
  width: 24px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   13. FAQ Section (Accordion)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-medium);
  border: 1px solid rgba(11, 44, 93, 0.03);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-header:hover {
  background-color: rgba(18, 62, 124, 0.02);
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: var(--transition-medium);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent-gold);
  transition: var(--transition-medium);
}

/* Horizontal line */
.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 2rem 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   14. Contact Section & Interactive Floating Form
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background-color: var(--light-gray);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-navy);
}

/* WhatsApp CTA Button */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  transition: var(--transition-medium);
}

.whatsapp-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-cta:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

/* Premium Form Styling with floating labels and error validation styles */
.contact-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 44, 93, 0.05);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-navy));
  border-radius: 8px 8px 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  position: relative;
}

/* Floating labels effect */
.form-input {
  width: 100%;
  padding: 1.5rem 1rem 0.6rem;
  border: 1.5px solid rgba(11, 44, 93, 0.15);
  border-radius: 8px;
  background-color: #F8F9FB;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Label states when focused or input is filled */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0.35rem;
  left: 1rem;
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.form-input:focus {
  border-color: var(--accent-gold);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
}

/* Dropdown styling */
select.form-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748B'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}

/* Custom error message */
.form-error {
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 0.25rem;
  display: none;
}

/* Form success message */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.form-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(212, 160, 23, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   15. Luxury Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--dark-slate);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold), var(--primary-navy));
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.6fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.8);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-policy-links {
  display: flex;
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Scroll Reveal Animations (Intersection Observer)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   17. Responsive Layout & Mobile Hamburger adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline {
    flex-direction: column;
    gap: 3rem;
  }
  
  .timeline::after {
    display: none;
  }
  
  .timeline-step {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
  
  .step-number-wrapper {
    margin: 0;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem 0;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .why-features {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .about-image {
    height: 320px;
  }
  
  /* Mobile Menu navigation overlay */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--primary-navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1005;
    transition: var(--transition-medium);
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .nav-link:hover {
    color: var(--accent-gold);
  }

  .hamburger.open span {
    background-color: var(--white);
  }

  .nav-menu .nav-link.active {
    color: var(--accent-gold);
    font-weight: 600;
  }
  

  .header-cta-btn {
    display: none; /* Hide header btn on small screen */
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   9.5. Map Section
   -------------------------------------------------------------------------- */
.map-section {
  padding: var(--section-padding);
  background-color: var(--background-light);
  position: relative;
}

.map-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: rgba(212, 160, 23, 0.1);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  animation: mapPinBounce 2.5s ease-in-out infinite;
}

.map-section-pin {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold);
}

@keyframes mapPinBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.map-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(11, 44, 93, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(11, 44, 93, 0.05);
}

.map-decor-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #F3E5AB 50%, var(--accent-gold) 100%);
  z-index: 5;
}

.map-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 450px; /* responsive aspect height ratio */
  height: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .map-iframe-container {
    padding-bottom: 300px;
  }
}

.map-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.3);
}

.map-details-overlay {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-overlay-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 800px;
}

.map-overlay-item svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.map-overlay-item p {
  font-size: 0.95rem;
  font-family: var(--font-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. Toast System & Button Loading States
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: 100px;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

@media (max-width: 576px) {
  .toast-container {
    right: 1rem;
    left: 1rem;
    top: auto;
    bottom: 2rem;
  }
}

.toast-card {
  pointer-events: auto;
  min-width: 320px;
  max-width: 450px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  transform: translateX(120%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 576px) {
  .toast-card {
    transform: translateY(120%);
    min-width: 0;
    width: 100%;
  }
}

.toast-card.active {
  transform: translateX(0);
}

@media (max-width: 576px) {
  .toast-card.active {
    transform: translateY(0);
  }
}

.toast-card.success {
  border-left: 5px solid #22C55E;
}

.toast-card.error {
  border-left: 5px solid #EF4444;
}

.toast-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.toast-card.success .toast-icon {
  background-color: rgba(34, 197, 94, 0.12);
  color: #22C55E;
}

.toast-card.error .toast-icon {
  background-color: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}

.toast-content {
  flex-grow: 1;
}

.toast-message {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

/* Button Spinner & Submitting States */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
  margin-left: 0.75rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-submitting {
  opacity: 0.75;
  pointer-events: none;
  cursor: not-allowed;
}

.btn-submitting .btn-spinner {
  display: inline-block;
}

