/* ==========================================================================
   Holytex Cleaning LLC - Design System & Stylesheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --primary-color: #143642;       /* Deep Ocean Blue - trustworthy, clean */
  --primary-light: #227c9d;       /* Sparkling Teal - fresh, active */
  --primary-lighter: #eef7f9;     /* Light Ice Blue - card backgrounds */
  --accent-color: #c5a059;        /* Warm Gold - refined, delicate, premium */
  --accent-light: #f4ebd9;        /* Soft Cream - highlight backgrounds */
  --text-dark: #1d2d44;           /* Charcoal - highly readable body */
  --text-muted: #64748b;          /* Cool Gray - secondary details */
  --bg-main: #f8fafc;             /* Off-White - page background */
  --bg-card: #ffffff;             /* Pure White - surfaces */
  --success-color: #2ec4b6;       /* Clean Mint - success and active states */
  --whatsapp-color: #25d366;      /* WhatsApp Brand Green */
  --border-color: #e2e8f0;        /* Light Gray Border */
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(20, 54, 66, 0.04);
  --shadow-md: 0 10px 30px rgba(20, 54, 66, 0.06);
  --shadow-lg: 0 20px 40px rgba(20, 54, 66, 0.1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Base resets & styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 124, 157, 0.2);
}

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

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

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

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

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

.logo-link {
  display: block;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrapper svg {
  transition: var(--transition-smooth);
}

.logo-wrapper:hover svg {
  transform: rotate(-10deg) scale(1.05);
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
  transform: scale(1.04);
}

/* Footer logo sits on a white badge so the dark-text wordmark stays visible on the dark footer */
.footer-logo {
  display: inline-flex;
  align-self: flex-start;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.footer-logo .logo-img {
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

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

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

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

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

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

/* Language Switcher */
.language-switcher {
  display: flex;
  background-color: var(--primary-lighter);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.lang-btn {
  background: none;
  border: none;
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: white;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--bg-card);
  z-index: 999;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.mobile-menu-cta {
  margin-top: 20px;
}

/* Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, #e8f5f8 0%, var(--bg-main) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-light);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.hero-section h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  width: 100%;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hero-trust .divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1.1;
}

.trust-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
}

.hero-image {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(20, 54, 66, 0.1);
  z-index: 10;
}

.floating-glass-card.top-left {
  top: 10%;
  left: -12%;
}

.floating-glass-card.bottom-right {
  bottom: 12%;
  right: -10%;
}

.glass-icon {
  background-color: var(--accent-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-glass-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.floating-glass-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Slogan Section */
.slogan-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  position: relative;
}

.sparkle-decor {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.slogan-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px auto;
  font-style: italic;
  letter-spacing: -0.5px;
}

.slogan-author {
  display: block;
  font-size: 1rem;
  color: var(--accent-color);
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.service-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 124, 157, 0.2);
}

.service-icon-wrapper {
  background-color: var(--primary-lighter);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.service-features li {
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: 700;
}

/* Transformation / Before-After Section */
.transformation-section {
  padding: 100px 0;
  background-color: var(--bg-card);
}

.slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-before {
  width: 50%; /* JS will change this dynamically */
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  background-color: rgba(20, 54, 66, 0.85);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1.5px;
  z-index: 10;
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%; /* JS will change this dynamically */
  width: 4px;
  height: 100%;
  background-color: white;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.handle-line {
  flex-grow: 1;
  width: 2px;
  background-color: white;
}

.handle-button {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 4px solid white;
}

/* Overlaid Range Input for smooth dragging */
.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

/* Estimator & Booking Section */
.estimator-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.estimator-card, .booking-form-card {
  background-color: var(--bg-card);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.estimator-card h2, .booking-form-card h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
}

/* Custom dropdown styled wrapper */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--text-muted);
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
}

select {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: white;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(34, 124, 157, 0.1);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Numeric Counter Custom Controls */
.counter-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--border-color);
  padding: 8px;
  border-radius: var(--radius-sm);
  background-color: white;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary-lighter);
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.counter-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Visual Addon Checklist */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.addon-checkbox-card {
  position: relative;
  cursor: pointer;
}

.addon-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.addon-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: white;
  transition: var(--transition-smooth);
  font-weight: 500;
  font-size: 0.85rem;
}

.addon-icon {
  font-size: 1.2rem;
}

.addon-input:checked + .addon-content {
  border-color: var(--primary-light);
  background-color: var(--primary-lighter);
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Price Box output */
.price-display-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 28px;
  border-radius: var(--radius-md);
  color: white;
  text-align: center;
  box-shadow: 0 10px 20px rgba(20, 54, 66, 0.15);
}

.price-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 6px 0;
  color: var(--accent-color);
}

.price-note {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Booking Form Elements */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.form-input::placeholder {
  color: #a0aec0;
}

.form-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(34, 124, 157, 0.1);
}

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

/* Accordion FAQs */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-card);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 8px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  outline: none;
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 8px;
}

.faq-answer p {
  color: var(--text-muted);
  padding-bottom: 24px;
  font-size: 0.95rem;
}

/* Open accordion states */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

/* Call to Action Banner */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(20, 54, 66, 0.92), rgba(20, 54, 66, 0.92)), url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.cta-section h2 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 36px auto;
  opacity: 0.85;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Contact & Simulated Map Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.contact-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.contact-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 124, 157, 0.2);
}

.icon-circle {
  background-color: var(--primary-lighter);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.contact-detail-card p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.social-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-wrapper h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  background-color: var(--primary-color);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background-color: var(--primary-light);
  transform: scale(1.1);
}

/* Map simulated graphics */
.contact-map {
  width: 100%;
}

.map-card-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.simulated-map {
  height: 280px;
  background-color: #d1e2e6;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(20, 54, 66, 0.05) 0%, transparent 60%),
    linear-gradient(45deg, #cbd5e1 25%, transparent 25%),
    linear-gradient(-45deg, #cbd5e1 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #cbd5e1 75%),
    linear-gradient(-45deg, transparent 75%, #cbd5e1 75%);
  background-size: 60px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pulsing radar point */
.map-circle {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(34, 124, 157, 0.3);
  border-radius: 50%;
  position: absolute;
}

.map-pulse {
  width: 120px;
  height: 120px;
  background-color: rgba(34, 124, 157, 0.15);
  border-radius: 50%;
  position: absolute;
  animation: pulseRadar 3s ease-out infinite;
}

.map-pin {
  font-size: 2.5rem;
  z-index: 2;
  animation: bouncePin 1.5s ease-in-out infinite alternate;
}

.map-location-tag {
  position: absolute;
  top: 60%;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.map-details {
  padding: 32px;
}

.map-details h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.map-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.areas-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-badge {
  background-color: var(--primary-lighter);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(20, 54, 66, 0.08);
}

@keyframes pulseRadar {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes bouncePin {
  0% { transform: translateY(-4px); }
  100% { transform: translateY(4px); }
}

/* Footer Section */
footer {
  background-color: var(--primary-color);
  color: #e2e8f0;
  padding-top: 80px;
  border-top: 5px solid var(--accent-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 280px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-group h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-group h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links-group a {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links-group a:hover {
  opacity: 1;
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-links-group span {
  opacity: 0.8;
  font-size: 0.95rem;
  display: block;
}

.footer-links-group p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.6);
}

/* Floats & Actions */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #20ba5a;
}

/* Toast Success Box */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background-color: var(--primary-color);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-left: 4px solid var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas, .hero-trust {
    justify-content: center;
  }
  
  .floating-glass-card.top-left {
    left: 2%;
  }
  
  .floating-glass-card.bottom-right {
    right: 2%;
  }

  .estimator-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .btn-nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .slogan-quote {
    font-size: 1.6rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .rooms-grid, .addons-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .counter-control {
    justify-content: space-around;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .floating-glass-card {
    padding: 10px 14px;
  }
  
  .floating-glass-card h4 {
    font-size: 0.8rem;
  }
  
  .floating-glass-card p {
    font-size: 0.65rem;
  }
  
  .estimator-card, .booking-form-card {
    padding: 24px 20px;
  }
  
  .price-value {
    font-size: 1.8rem;
  }
}
