/* ============================================================
   HC CURTAINS - MAIN STYLESHEET
   Design: Warm & Homely — Earthy tones, cozy, trustworthy
   Mobile-First approach
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap');

/* === CSS Variables === */
:root {
  /* Color Palette */
  --color-primary:      #8B6914;   /* warm golden brown */
  --color-primary-dark: #6B4F0F;
  --color-primary-light:#C4973B;
  --color-accent:       #D4A843;   /* golden accent */
  --color-accent-light: #F0D080;
  --color-bg:           #FBF8F3;   /* warm off-white */
  --color-bg-alt:       #F2ECE0;   /* light warm beige */
  --color-surface:      #FFFFFF;
  --color-text:         #2C2416;   /* dark warm brown */
  --color-text-light:   #6B5C3E;   /* medium brown */
  --color-text-muted:   #9C8B6E;   /* muted brown */
  --color-border:       #E2D5BC;
  --color-border-light: #F0E8D5;
  --color-success:      #4CAF50;
  --color-error:        #E53935;
  --color-whatsapp:     #25D366;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44,36,22,0.08);
  --shadow-md: 0 4px 16px rgba(44,36,22,0.12);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.16);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.18);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.15s ease;

  /* Max widths */
  --max-w-sm:  540px;
  --max-w-md:  768px;
  --max-w-lg:  1024px;
  --max-w-xl:  1200px;
  --max-w-2xl: 1400px;

  /* Header height */
  --header-h: 70px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

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

h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(24px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: clamp(17px, 2.5vw, 22px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* === Layout Utilities === */
.container {
  width: 100%;
  max-width: var(--max-w-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-sm { padding: var(--space-xl) 0; }
.section-lg { padding: var(--space-3xl) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 16px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: var(--space-md) auto;
  border-radius: 2px;
}

.divider-left {
  margin: var(--space-md) 0;
}

/* === Grid === */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

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

.btn-white:hover {
  background: var(--color-accent-light);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-light);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  min-height: 36px;
}

.btn-block { width: 100%; }

/* === Cards === */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-body { padding: var(--space-lg); }

/* === Forms === */
.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139,105,20,0.12);
}

.form-control::placeholder { color: var(--color-text-muted); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%238B6914'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-error {
  color: var(--color-error);
  font-size: 13px;
  margin-top: 4px;
}

.form-alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: 14px;
  font-weight: 600;
}

.form-alert-success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form-alert-error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* Honeypot */
.hp-field { display: none !important; }

/* === Header === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(251,248,243,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

/* Navigation */
.nav { display: none; }

.nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-lg);
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav ul { flex-direction: column; gap: var(--space-xs); }

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 14px var(--space-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding-left: var(--space-lg);
}

.mobile-nav-cta {
  margin-top: auto;
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Page Content Offset */
.page-content {
  margin-top: var(--header-h);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,22,0.75) 0%, rgba(44,36,22,0.4) 60%, rgba(139,105,20,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-xl);
  max-width: 520px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--color-accent); }

/* Hero Quick Form */
.hero-form-wrap {
  position: relative;
  z-index: 2;
  display: none; /* shown on desktop */
}

/* === USP Bar === */
.usp-bar {
  background: var(--color-primary);
  padding: var(--space-md) 0;
}

.usp-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
}

.usp-item svg { width: 18px; height: 18px; fill: var(--color-accent); flex-shrink: 0; }

/* === Services Grid === */
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}

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

.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-icon {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.service-card-icon svg { width: 20px; height: 20px; fill: #fff; }

.service-card-body {
  padding: var(--space-md) var(--space-lg);
}

.service-card-body h3 {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-body h3 {
  color: var(--color-primary);
}

.service-card-body p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-sm);
}

.service-card-link svg { width: 14px; height: 14px; fill: currentColor; }

/* === Enquiry Form Section === */
.enquiry-section {
  background: var(--color-bg-alt);
}

.enquiry-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.enquiry-info {
  background: var(--color-primary);
  padding: var(--space-xl) var(--space-lg);
  color: #fff;
}

.enquiry-info h3 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.enquiry-info p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.enquiry-info-list {
  margin-top: var(--space-lg);
}

.enquiry-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.enquiry-info-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.enquiry-info-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
  color: #fff;
}

.enquiry-info-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.enquiry-form-area {
  padding: var(--space-xl) var(--space-lg);
}

/* === Gallery === */
.gallery-filter {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-light);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  min-height: 40px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,22,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay svg { width: 32px; height: 32px; fill: #fff; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: background var(--transition-fast);
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: background var(--transition-fast);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

/* === Testimonials === */
.testimonials-section { background: var(--color-bg-alt); }

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-accent-light);
  position: absolute;
  top: 0;
  left: var(--space-md);
  line-height: 0.9;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.star { color: var(--color-border); font-size: 16px; }
.star.filled { color: var(--color-accent); }

.testimonial-text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* === Why Choose Us === */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  border: 2px solid var(--color-border);
}

.why-icon svg { width: 32px; height: 32px; fill: var(--color-primary); }

.why-item h4 { margin-bottom: 8px; font-size: 17px; }

.why-item p { font-size: 13px; color: var(--color-text-light); margin: 0; }

/* === Stats === */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-suffix {
  color: var(--color-accent);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === Areas Served === */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.area-tag svg { width: 14px; height: 14px; fill: var(--color-primary); }

.area-tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.area-tag:hover svg { fill: #fff; }

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6B4F0F 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(212,168,67,0.1);
  border-radius: 50%;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 { color: #fff; }
.cta-section p  { color: rgba(255,255,255,0.85); font-size: 16px; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* === Footer === */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.footer-brand {}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 13px;
}

.footer-contact-item svg { width: 16px; height: 16px; fill: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--color-accent); }

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

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

.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-area-tag {
  font-size: 11px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

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

.social-link:hover { background: var(--color-primary); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-link:hover svg { fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* === Floating Buttons === */
.floating-btns {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-md);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: #fff;
}

.float-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.float-whatsapp { background: var(--color-whatsapp); }
.float-call { background: var(--color-primary); }

.float-btn .float-label { display: none; }

/* === Page Hero (Inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-light) 100%);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { font-size: clamp(24px, 4vw, 40px); color: var(--color-text); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.breadcrumb a {
  font-size: 13px;
  color: var(--color-text-muted);
}

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

.breadcrumb-sep {
  font-size: 10px;
  color: var(--color-text-muted);
}

.breadcrumb-current {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}

/* === Map Section === */
.map-section { padding: 0; }

.map-section iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: sepia(20%) hue-rotate(10deg);
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === Badges & Tags === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary { background: var(--color-primary); color: #fff; }
.badge-accent  { background: var(--color-accent-light); color: var(--color-primary-dark); }
.badge-new     { background: #E8F5E9; color: #2E7D32; }
.badge-hot     { background: #FFF3E0; color: #E65100; }

/* === Misc === */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.mt-auto { margin-top: auto; }
.hidden { display: none !important; }

.bg-alt { background: var(--color-bg-alt); }
.bg-primary { background: var(--color-primary); }

/* === Scroll to top === */
.scroll-top {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 700;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { background: var(--color-primary); border-color: var(--color-primary); }
.scroll-top svg { width: 18px; height: 18px; fill: var(--color-text-light); }
.scroll-top:hover svg { fill: #fff; }

/* ============================================================
   TABLET - 640px+
   ============================================================ */
@media (min-width: 640px) {
  .container { padding: 0 var(--space-lg); }

  .hero-actions { flex-direction: row; }

  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-actions { flex-direction: row; }

  .map-section iframe { height: 400px; }

  .float-btn .float-label { display: block; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   DESKTOP - 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root { --header-h: 80px; }

  .container { padding: 0 var(--space-xl); }

  /* Header */
  .nav { display: block; }
  .menu-toggle { display: none; }
  .header-cta { display: flex; align-items: center; gap: var(--space-md); }

  /* Hero */
  .hero { min-height: 580px; max-height: 700px; }
  .hero-form-wrap { display: block; }

  .hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-2xl); align-items: center; }

  /* Grids */
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  /* Enquiry Box */
  .enquiry-box { display: grid; grid-template-columns: 360px 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  /* Map */
  .map-section iframe { height: 450px; }

  /* Floating buttons - larger label always visible on desktop */
  .floating-btns { bottom: var(--space-xl); right: var(--space-xl); }
}

/* ============================================================
   SERVICE ROW - Alternating image/text layout
   On mobile: image always full width on top, text below
   On desktop: odd rows = image left / even rows = image right
   ============================================================ */

/* Mobile: always single column, image on top */
.service-row {
  grid-template-columns: 1fr !important;
}
.service-row-img {
  order: 1;
}
.service-row-content {
  order: 2;
}

/* Desktop 768px+: side by side, reverse rows flip image to right */
@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Default: image left, text right */
  .service-row-img    { order: 1; }
  .service-row-content{ order: 2; }
  /* Reverse row: image right, text left */
  .service-row-reverse .service-row-img    { order: 2; }
  .service-row-reverse .service-row-content{ order: 1; }
}

/* ============================================================
   LARGE DESKTOP - 1280px+
   ============================================================ */
@media (min-width: 1280px) {
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

/* === Print === */
@media print {
  .site-header, .floating-btns, .scroll-top, .mobile-nav { display: none !important; }
  .page-content { margin-top: 0; }
}