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

/* --- CUSTOM PROPERTIES (DESIGN SYSTEM) --- */
:root {
  --primary-blue: #0B1B3D;
  --primary-blue-light: #162E5C;
  --primary-blue-rgb: 11, 27, 61;
  
  --accent-gold: #C5A880;
  --accent-gold-hover: #A68A62;
  --accent-gold-rgb: 197, 168, 128;
  
  --bg-white: #FFFFFF;
  --bg-light: #F7F9FC;
  --bg-slate: #102347;
  
  --text-dark: #202D42;
  --text-muted: #5C6E84;
  --text-light: #E2E8F0;
  
  --border-color: #E2E8F0;
  --accent-red: #D9534F;
  --accent-red-bg: #FDF2F2;
  --accent-green: #2EC4B6;
  --accent-green-bg: #EAFDF8;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --card-shadow: 0 10px 30px rgba(11, 27, 61, 0.04);
  --card-shadow-hover: 0 20px 40px rgba(11, 27, 61, 0.08);
  --btn-shadow: 0 4px 14px rgba(197, 168, 128, 0.25);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1200px;
}

/* --- RESET & BASE STYLES --- */
*, *::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);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-blue);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

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

/* --- REUSABLE UTILITIES & LAYOUTS --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.section-bg-dark {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.section-bg-dark h2, .section-bg-dark h3 {
  color: var(--bg-white);
}

.section-bg-dark p {
  color: var(--text-light);
  opacity: 0.8;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--bg-white);
  color: var(--primary-blue);
  border: 2px solid var(--bg-white);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* --- NAVIGATION BAR --- */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.header-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(11, 27, 61, 0.06);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(11, 27, 61, 0.05);
}

.header-nav.scrolled .nav-logo {
  color: var(--primary-blue);
}

.header-nav.scrolled .nav-links a {
  color: var(--text-dark);
}

.header-nav.scrolled .nav-links a.active {
  color: var(--accent-gold);
}

/* Navigation layout */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-nav.scrolled .nav-logo {
  color: var(--primary-blue);
}

.nav-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

.nav-cta .btn-call {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-radius: 50px;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--bg-white);
  margin: 5px 0;
  transition: var(--transition-fast);
}

.header-nav.scrolled .menu-toggle span {
  background-color: var(--primary-blue);
}

/* Mobile Nav Active Menu Toggle state */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-blue);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
    color: var(--bg-white);
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-cta {
    display: none; /* Handled via mobile sticky CTA buttons */
  }
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(11, 27, 61, 0.95) 0%, 
    rgba(11, 27, 61, 0.7) 50%,
    rgba(11, 27, 61, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 1rem;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: fadeInDown 1s ease forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  animation: fadeInUp 1s ease forwards;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 27, 61, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(197, 168, 128, 0.3);
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(197, 168, 128, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  transform: scale(1.05);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--accent-gold-hover);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- WHY CHOOSE US SECTION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 27, 61, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  gap: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(197, 168, 128, 0.2);
}

.feature-icon-wrapper {
  flex-shrink: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(11, 27, 61, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-blue);
  color: var(--accent-gold);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.9rem;
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- SIGNATURE ELEMENT: INTERACTIVE QUOTE ESTIMATOR --- */
.estimator-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(11, 27, 61, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.estimator-form {
  padding: 3rem;
}

.estimator-result {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(197, 168, 128, 0.2);
  position: relative;
}

.estimator-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(197, 168, 128, 0.15), transparent 60%);
  pointer-events: none;
}

.estimator-group {
  margin-bottom: 1.5rem;
}

.estimator-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--accent-gold);
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.estimator-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
}

.estimator-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.range-inputs {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.estimator-range {
  flex-grow: 1;
  accent-color: var(--accent-gold);
}

.range-value {
  font-weight: 700;
  color: var(--accent-gold);
  min-width: 60px;
  text-align: right;
}

.result-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.price-display {
  margin-bottom: 2rem;
}

.price-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
}

.price-number span {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-gold);
}

.price-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.price-breakdown {
  list-style: none;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.price-breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.price-breakdown li.total-breakdown {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
  font-weight: 700;
  color: var(--bg-white);
}

.estimator-btn {
  width: 100%;
}

@media (max-width: 768px) {
  .estimator-card {
    grid-template-columns: 1fr;
  }
  .estimator-form, .estimator-result {
    padding: 2rem;
  }
  .estimator-result {
    border-left: none;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
  }
}

/* --- SERVICE AREA SECTION (WITH MAP) --- */
.service-area-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 27, 61, 0.03);
}

.area-map-container {
  height: 500px;
  width: 100%;
  position: relative;
  background-color: #e5e3df; /* Leaflet placeholder */
  z-index: 10;
}

/* Custom dark overlay/styling helper for Leaflet map integration */
.leaflet-container {
  font-family: var(--font-body) !important;
}

.leaflet-popup-content-wrapper {
  background: var(--primary-blue) !important;
  color: var(--bg-white) !important;
  border-radius: 8px !important;
  border: 1px solid var(--accent-gold) !important;
}
.leaflet-popup-tip {
  background: var(--primary-blue) !important;
}

.area-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.area-content p {
  margin-bottom: 2rem;
}

.cities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
}

.cities-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cities-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 992px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  .area-map-container {
    height: 350px;
    order: 2;
  }
  .area-content {
    padding: 2.5rem;
    order: 1;
  }
}

/* --- PRICING SECTION --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 27, 61, 0.03);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(11, 27, 61, 0.08);
}

.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
}

/* --- REVIEWS/TESTIMONIALS CAROUSEL --- */
.reviews-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.review-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 27, 61, 0.02);
  text-align: center;
}

.stars-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.review-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--primary-blue);
  font-style: italic;
  margin-bottom: 2.5rem;
}

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

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-light);
  border: 2px solid var(--accent-gold);
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: left;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}

/* Slider Controls */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  background: none;
  border: 1.5px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--primary-blue);
}

.slider-btn:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 27, 61, 0.03);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: var(--transition-fast);
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-chevron svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Expanded state styles */
.faq-item.active {
  border-color: rgba(197, 168, 128, 0.3);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-title p {
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

/* Form Container styling */
.contact-form-container {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: 0 15px 45px rgba(11, 27, 61, 0.05);
  border: 1px solid rgba(11, 27, 61, 0.02);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

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

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

/* Inline Validation Errors */
.form-error-msg {
  font-size: 0.8rem;
  color: var(--accent-red);
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error .form-select {
  border-color: var(--accent-red);
  background-color: var(--accent-red-bg);
}

.form-group.has-error .form-error-msg {
  display: block;
}

.contact-form .btn {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .contact-form-container {
    padding: 2rem;
  }
}

/* Modal Toast for Submission Feedback */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-gold);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.toast-notification.show {
  transform: translateY(0);
}

.toast-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
}
.toast-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  padding: 5rem 0 4rem 0;
}

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

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

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

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

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-contact-info svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* --- STICKY & FLOATING CTAs (MOBILE FIRST) --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-blue);
  border-top: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  z-index: 990;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
}

.mobile-sticky-grid .btn {
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  border-radius: 30px;
}

/* Show floating widgets only on screens smaller than 768px */
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
  
  /* Ensure content is not hidden behind the footer bar */
  body {
    padding-bottom: 70px;
  }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: 5.5rem; /* clear mobile sticky bar */
  right: 1.5rem;
  background-color: var(--primary-blue);
  color: var(--accent-gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  border-color: var(--accent-gold);
}

.back-to-top svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
