/* ==========================================================================
   360ApplianceCare Master Stylesheet
   Pure CSS System for HTML, JS & PHP Deployment
   ========================================================================== */

/* ── Google Fonts Import & CSS Variables ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  --color-primary: #1e2a4a;
  --color-primary-light: #2c3e6b;
  --color-primary-soft: #f0f4fa;

  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-accent-soft: #fffbeb;

  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1da851;

  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-card: #ffffff;

  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  --color-success: #10b981;
  --color-danger: #ef4444;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(15, 23, 42, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── CRITICAL FIX FOR HOSTINGER INPUT VISIBILITY ── */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
select,
textarea {
  color: #0f172a !important;
  background-color: #ffffff !important;
  -webkit-text-fill-color: #0f172a !important;
  caret-color: #1e2a4a !important;
  opacity: 1 !important;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  opacity: 1 !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(30, 42, 74, 0.12) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #0f172a !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

select option {
  color: #0f172a !important;
  background-color: #ffffff !important;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.required-star {
  color: var(--color-danger);
}

/* ── Container Layouts ── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ── Section Utilities ── */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.section-heading {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background-color: var(--color-primary-soft);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  line-height: 1.4;
}

.btn-navy {
  background: linear-gradient(135deg, #1e2a4a, #2c3e6b);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 42, 74, 0.25);
}

.btn-navy:hover {
  background: linear-gradient(135deg, #151e36, #213054);
  box-shadow: 0 6px 18px rgba(30, 42, 74, 0.35);
  transform: translateY(-1px);
}

.btn-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

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

.btn-outline-navy:hover {
  background-color: var(--color-primary-soft);
}

.btn-outline-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* ── Header Navbar ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.site-logo:hover img {
  transform: scale(1.03);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn-call {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.header-btn-book {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.mobile-drawer-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card-btn-group {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
  background-color: rgba(0, 0, 0, 0.06);
  color: #000000;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: #000000;
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #0f172a;
  cursor: pointer;
  padding: 8px;
}

.mobile-drawer {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.mobile-nav-link.active {
  background-color: var(--color-surface);
  color: var(--color-primary);
}

/* ── Hero Banner Section & Slider ── */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #0f172a;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.hero-slide picture {
  display: block;
  width: 100%;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  background: #f59e0b;
  border-radius: 99px;
}

@media (max-width: 640px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slider-dots { bottom: 10px; padding: 6px 12px; }
}

.page-hero {
  background: linear-gradient(135deg, #162038, #1e2a4a, #2c3e6b);
  color: #ffffff;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 24px;
}

/* ── Grid Utilities ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

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

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

.col-span-5 { grid-column: span 5; }
.col-span-7 { grid-column: span 7; }
.col-span-6 { grid-column: span 6; }

/* ── Cards & Features ── */
.card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(30, 42, 74, 0.25);
}

.card-accent-line {
  height: 4px;
  width: 100%;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.card-blue { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.card-purple { background: linear-gradient(90deg, #8b5cf6, #a855f7); }

/* ── Reach Us / Contact Form Card ── */
.form-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

/* ── Success Alert Message ── */
.alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.alert-success-icon {
  width: 56px;
  height: 56px;
  background-color: #dcfce7;
  color: #15803d;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: linear-gradient(135deg, #1e2a4a, #2c3e6b);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-xl);
}

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

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Process Steps ── */
.process-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(30, 42, 74, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

/* ── Testimonial Card ── */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FAQ Accordion ── */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--color-text-muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

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

/* ── Table Styling ── */
.table-wrapper {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.data-table th {
  background-color: var(--color-surface);
  padding: 12px 16px;
  font-weight: 700;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.data-table tbody tr:hover {
  background-color: rgba(248, 250, 252, 0.6);
}

/* ── Footer ── */
.site-footer {
  background-color: var(--color-primary);
  color: #ffffff;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 4rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Floating Action Buttons (Fixed Bottom Right) ── */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

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

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

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

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

.floating-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background-color: #f59e0b;
  border-radius: var(--radius-full);
  border: 2px solid #ffffff;
}

.floating-pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background-color: inherit;
  animation: pulse-ring 2s infinite;
  opacity: 0.4;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Modal Booking Popup ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  position: relative;
  padding: 2rem;
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-surface);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 20px;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background-color: #e2e8f0;
  color: var(--color-text-main);
}

/* ── Responsive Media Queries ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-12 { grid-template-columns: 1fr; }
  .col-span-5, .col-span-7, .col-span-6 { grid-column: span 12; }
  .desktop-nav { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
  .header-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .site-logo img {
    height: 46px;
  }
  .header-btn-call, .header-btn-book {
    padding: 8px 14px;
    font-size: 13px;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .section-title { font-size: 1.85rem; }
  .page-hero-title { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  .section { padding-top: 2.75rem; padding-bottom: 2.75rem; }
  .section-heading { margin-bottom: 2rem; }
  .section-title { font-size: 1.65rem; }
  .page-hero { padding: 3rem 1rem; }
  .page-hero-title { font-size: 1.85rem; }
  .page-hero-desc { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4, .form-grid-2 { grid-template-columns: 1fr; gap: 1rem; }
  .card { padding: 1.25rem; border-radius: var(--radius-lg); }
  .form-card { padding: 1.25rem; border-radius: var(--radius-lg); }
  .card-btn-group { flex-direction: column; gap: 8px; }
  .card-btn-group .btn { width: 100%; text-align: center; }
  .footer-bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
  .modal-card { padding: 1.25rem; border-radius: var(--radius-lg); max-width: 92vw; }
  
  /* Floating Action Buttons on Mobile */
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header-actions {
    gap: 6px;
  }
  .site-logo img {
    height: 38px;
  }
  .header-btn-call, .header-btn-book {
    padding: 7px 10px;
    font-size: 12px;
    border-radius: var(--radius-sm);
    gap: 4px;
  }
  .header-btn-call svg, .header-btn-book svg {
    width: 14px;
    height: 14px;
  }
  .list-grid-2 {
    grid-template-columns: 1fr !important;
  }
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
}

@media (max-width: 360px) {
  .header-btn-call .header-btn-text {
    display: none;
  }
  .header-btn-call {
    padding: 7px 8px;
  }
}
