/* ==========================================================================
   IFB Home Appliance Repair Service - Premium CSS Stylesheet
   Design Ethos: Sleek, Modern, Premium, Glassmorphism, Micro-animations
   Color Palette: Vibrant Red (#E30613), Deep Obsidian (#0F1016), Ice Blue (#F3F5F9)
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- Root Variables --- */
:root {
  --primary-color: #E30613; /* Premium Vibrant Red */
  --primary-hover: #B8000A;
  --secondary-color: #0F1016; /* Deep Obsidian Black */
  --secondary-light: #1A1C24; /* Slate Dark */
  
  --text-dark: #1E2027; /* Rich Dark Gray */
  --text-light: #626875; /* Slate Gray */
  --text-muted: #8F95A3;
  
  --bg-white: #FFFFFF;
  --bg-light: #F6F8FB; /* Soft Ice Blue */
  --bg-dark-section: #0B0C10;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-dark: rgba(15, 16, 22, 0.85);
  
  --border-light: rgba(0, 0, 0, 0.06);
  --border-glass: rgba(255, 255, 255, 0.4);
  --border-focus: rgba(227, 6, 19, 0.25);
  
  --accent-blue: #0054A6; /* Technical Blue Accent */
  --accent-teal: #00A896;
  --whatsapp-color: #25D366;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(15, 16, 22, 0.03);
  --shadow-md: 0 12px 32px rgba(15, 16, 22, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 16, 22, 0.1);
  --shadow-glow: 0 8px 24px rgba(227, 6, 19, 0.2);
  --shadow-whatsapp: 0 8px 32px rgba(37, 211, 102, 0.35);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  display: inline-block;
}

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--border-radius-full);
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* --- Reusable Layout Components --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title-wrapper {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.section-title-wrapper span {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
  font-family: var(--font-heading);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #FF5E62);
  margin: 1rem auto 0;
  border-radius: var(--border-radius-full);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 400;
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF2E3B 100%);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF2E3B 0%, var(--primary-color) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* --- Header & Glassmorphic Navigation --- */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.25rem 0;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.top-bar {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.825rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-info {
  display: flex;
  gap: 2rem;
}

.top-bar-info li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-bar-info svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-color);
}

.top-bar-socials {
  display: flex;
  gap: 1.25rem;
}

.top-bar-socials a {
  color: rgba(255, 255, 255, 0.6);
}

.top-bar-socials a:hover {
  color: var(--primary-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--secondary-color);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

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

.logo span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(227, 6, 19, 0.15);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: var(--border-radius-full);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 18px;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 6px 0;
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-full);
}

/* --- Hero Banner Slider --- */
.hero-slider-section {
  position: relative;
  height: 680px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.slider-container {
  display: flex;
  height: 100%;
  width: 300%; /* For 3 slides */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 12, 16, 0.9) 0%, rgba(15, 16, 22, 0.6) 50%, rgba(15, 16, 22, 0.25) 100%);
  z-index: 1;
}

.slide-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.slide-content {
  max-width: 800px;
  color: var(--bg-white);
}

.tagline-badge {
  display: inline-block;
  background: rgba(227, 6, 19, 0.15);
  color: #FF5E62;
  border: 1px solid rgba(227, 6, 19, 0.3);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
}

.slide h1 {
  color: var(--bg-white);
  font-size: 4.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.slide p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 620px;
  font-weight: 400;
}

.slide-buttons {
  display: flex;
  gap: 1.25rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: var(--bg-white);
}

.slider-arrow-left {
  left: 2.5rem;
}

.slider-arrow-right {
  right: 2.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--border-radius-full);
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--primary-color);
  width: 28px;
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #FF5E62);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.02);
}

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

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-md);
  background-color: rgba(227, 6, 19, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-color);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper svg {
  fill: var(--bg-white);
}

.feature-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* --- Services Showcase --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.02);
}

.service-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.08);
  opacity: 0.95;
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.4rem 1.25rem;
  font-size: 0.775rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-radius: var(--border-radius-full);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
  letter-spacing: 0.05em;
  z-index: 2;
}

.service-card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card-content p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.service-features-list svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-teal);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: auto;
}

.service-price {
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-size: 1.35rem;
}

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

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link::after {
  content: '→';
  transition: var(--transition-smooth);
}

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

.service-link:hover::after {
  transform: translateX(5px);
}

/* --- About Preview Section --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-image {
  position: relative;
}

.about-preview-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-preview-experience {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  padding: 2.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-preview-experience h4 {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.about-preview-experience p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.about-preview-content .tagline-text {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.about-bullets {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-bullets svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  flex-shrink: 0;
}

/* --- Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border: 4px solid var(--bg-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.process-step h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  padding: 0 1rem;
}

/* --- Testimonials --- */
.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition-smooth);
}

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

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

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

.testimonial-text {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.testimonial-text::before {
  content: '“';
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-size: 5rem;
  color: rgba(227, 6, 19, 0.08);
  font-family: serif;
  line-height: 1;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.825rem;
  margin-bottom: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* --- Booking & FAQ Layout --- */
.booking-section-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 5rem;
  align-items: start;
}

.booking-form-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.booking-form-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.booking-form-card > p {
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px var(--border-focus);
}

/* Accordion FAQ Styling */
.booking-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(227, 6, 19, 0.15);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
  user-select: none;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: var(--transition-smooth);
  background-color: var(--bg-light);
  color: var(--text-light);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: rgba(227, 6, 19, 0.2);
}

.faq-item.active .faq-question {
  color: var(--primary-color);
  background-color: rgba(227, 6, 19, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border-light);
}

.faq-question-icon {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg);
  color: var(--primary-color);
}

/* --- Contact Details & Map --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: var(--border-radius-full);
  background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  right: -200px;
}

.contact-info-card h2 {
  color: var(--bg-white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3.5rem 0;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
}

.contact-detail-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon svg {
  fill: var(--bg-white);
}

.contact-detail-text h4 {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-detail-text p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-social-icons {
  display: flex;
  gap: 1.25rem;
  z-index: 2;
}

.contact-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.contact-social-icons a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.contact-social-icons svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-white);
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  height: 100%;
  min-height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Banner Pages (Common Inner Headers) --- */
.inner-banner {
  background: linear-gradient(rgba(15, 16, 22, 0.8), rgba(15, 16, 22, 0.95)), url('../images/contact_banner.png');
  background-size: cover;
  background-position: center;
  height: 340px;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  text-align: center;
  position: relative;
}

.inner-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #FF5E62);
}

.inner-banner-content {
  width: 100%;
}

.inner-banner-content h1 {
  color: var(--bg-white);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

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

.breadcrumb span {
  color: var(--primary-color);
}

/* --- Footer --- */
footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 6.5rem 0 2.5rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

footer .logo {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 4.5rem;
  margin-bottom: 2.5rem;
}

.footer-widget h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-full);
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '→';
  color: var(--primary-color);
  font-weight: 700;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

.footer-links a:hover::before {
  color: var(--bg-white);
}

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

.footer-contact-item {
  display: flex;
  gap: 1.15rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

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

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: var(--whatsapp-color);
  color: var(--bg-white);
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-whatsapp);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--bg-white);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- SEO Text Blocks (Word Count Helpers) --- */
.seo-text-block {
  max-width: 960px;
  margin: 4rem auto 0;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.seo-text-block h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.seo-text-block h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.seo-text-block p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  .hero-slider-section {
    height: 560px;
  }
  .slide h1 {
    font-size: 3.25rem;
  }
  .about-preview {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-preview-image {
    max-width: 640px;
    margin: 0 auto;
  }
  .booking-section-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
  .section-title {
    font-size: 2.25rem;
  }
  .top-bar {
    display: none; /* Hide top bar on mobile screen */
  }
  
  /* Mobile Menu Overlay System */
  .nav-links {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    gap: 2.5rem;
    box-shadow: 0 15px 30px rgba(15, 16, 22, 0.08);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--primary-color);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--primary-color);
  }
  
  .nav-cta {
    display: none; /* Hide button on mobile */
  }
  
  .hero-slider-section {
    height: 480px;
  }
  
  .slide h1 {
    font-size: 2.5rem;
  }
  
  .slide p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  
  .slider-arrow {
    display: none; /* Rely on dots and touch interactions */
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.85rem;
  }
  .hero-slider-section {
    height: 440px;
  }
  .slide h1 {
    font-size: 2rem;
  }
  .slide-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn {
    width: 100%;
  }
  .booking-form-card {
    padding: 2rem;
  }
  .contact-info-card {
    padding: 2.5rem 2rem;
  }
  .about-preview-experience {
    padding: 1.5rem;
    bottom: -1rem;
    right: -1rem;
  }
  .about-preview-experience h4 {
    font-size: 2rem;
  }
  .about-bullets {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
