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

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #c0956c;
  --accent-hover: #d4a77a;
  --accent-glow: rgba(192, 149, 108, 0.25);
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --text-muted: #999;
  --bg: #ffffff;
  --bg-alt: #f5f3f0;
  --bg-dark: #0f0f1a;
  --border: #e8e4df;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --brand-green: #739b3e;
  --brand-purple: #92278f;
  --brand-grey: #808285;
}

/* ===== Brand Theme ===== */
[data-theme="brand"] {
  --primary: #3a3a3a;
  --primary-light: #4a4a4a;
  --accent: #739b3e;
  --accent-hover: #5d8232;
  --accent-glow: rgba(115, 155, 62, 0.25);
  --text: #333;
  --text-light: #808285;
  --text-muted: #999;
  --bg: #ffffff;
  --bg-alt: #f4f7f0;
  --bg-dark: #2a2a2a;
  --border: #dde5d5;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
}

[data-theme="brand"] .section-title {
  color: var(--brand-green);
}

[data-theme="brand"] .section-tag {
  color: var(--brand-purple);
}

[data-theme="brand"] .hero-tag {
  color: var(--brand-green);
  border-color: rgba(115, 155, 62, 0.4);
}

[data-theme="brand"] .hero-overlay {
  background: linear-gradient(180deg, rgba(42,42,42,0.5) 0%, rgba(42,42,42,0.65) 100%);
}

[data-theme="brand"] .stats-bar {
  background: var(--brand-green);
}

[data-theme="brand"] .stat-number,
[data-theme="brand"] .stat-plus {
  color: #fff;
}

[data-theme="brand"] .step-number {
  background: var(--brand-purple);
}

[data-theme="brand"] .feature-card h3,
[data-theme="brand"] .blinds-card h3,
[data-theme="brand"] .about-feature h3,
[data-theme="brand"] .contact-item h3 {
  color: var(--brand-green);
}

[data-theme="brand"] .cta-text {
  color: var(--brand-purple);
}

[data-theme="brand"] .highlight-pill {
  background: rgba(146, 39, 143, 0.12);
  color: var(--brand-purple);
  border-color: rgba(146, 39, 143, 0.25);
}

[data-theme="brand"] .review-stars {
  color: var(--brand-green);
}

[data-theme="brand"] .checkatrade-score {
  color: var(--brand-green);
}

[data-theme="brand"] .about-check {
  background: rgba(115, 155, 62, 0.12);
  color: var(--brand-green);
}

[data-theme="brand"] .about-image-badge {
  background: var(--brand-purple);
}

[data-theme="brand"] .areas-list span:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

[data-theme="brand"] .social-links a {
  background: var(--brand-purple);
}

[data-theme="brand"] .social-links a:hover {
  background: var(--brand-green);
}

[data-theme="brand"] .whatsapp-float {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

[data-theme="brand"] .nav-cta {
  background: var(--brand-green) !important;
}

[data-theme="brand"] .nav-cta:hover {
  background: var(--brand-purple) !important;
}

[data-theme="brand"] .footer {
  background: #2a2a2a;
}

[data-theme="brand"] .section-title-left {
  color: var(--brand-green);
}

[data-theme="brand"] .blinds-icon-wrap {
  color: var(--brand-purple);
  background: rgba(146, 39, 143, 0.1);
}

[data-theme="brand"] .contact-card-icon {
  color: var(--brand-green);
}

[data-theme="brand"] .contact-card h3 {
  color: var(--brand-green);
}

/* Theme Switcher */
.theme-switcher {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

.theme-switcher span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-toggle {
  width: 44px;
  height: 24px;
  background: var(--accent);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

[data-theme="brand"] .theme-toggle {
  background: var(--brand-green);
}

[data-theme="brand"] .theme-toggle::after {
  transform: translateX(20px);
}

/* Logo image */
.logo-img {
  height: 36px;
  width: auto;
  display: none;
}

[data-theme="brand"] .logo-text {
  display: none;
}

[data-theme="brand"] .logo-img {
  display: block;
}

.navbar.scrolled .logo-img {
  height: 32px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-hover);
}

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

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

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .parallax-divider, .hero { background-attachment: scroll !important; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.navbar.scrolled .logo {
  color: var(--primary);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

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

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 1px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.navbar.scrolled .nav-links a {
  color: var(--text-light);
}

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

.navbar.scrolled .nav-cta {
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--primary);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center/cover no-repeat fixed;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,26,0.5) 0%, rgba(15,15,26,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(192, 149, 108, 0.4);
  border-radius: 100px;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  opacity: 0.95;
  line-height: 1.5;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub2 {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  color: #fff;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ===== Section Tags & Titles ===== */
.section-tag {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-intro {
  color: rgba(255,255,255,0.6);
}

.section-dark .section-tag {
  color: var(--accent);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-title-left {
  text-align: left;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== Parallax Dividers ===== */
.parallax-divider {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,26,0.7) 0%, rgba(26,26,46,0.6) 100%);
}

.parallax-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 24px;
}

.parallax-text h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.parallax-text p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.7;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg-alt);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 220px;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  color: var(--border);
}

.step-arrow svg {
  width: 28px;
  height: 28px;
}

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

.cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-alt-light {
  background: #fff;
}

/* ===== Lightbox ===== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

/* ===== Shutters / Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.feature-img {
  height: 240px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-img img {
  transform: scale(1.08);
}

.feature-body {
  padding: 24px 28px 28px;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Blinds ===== */
.blinds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.blinds-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blinds-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.blinds-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--accent);
  background: rgba(192, 149, 108, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.blinds-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.blinds-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

.blinds-highlights {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-pill {
  background: rgba(192, 149, 108, 0.15);
  color: var(--accent);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(192, 149, 108, 0.25);
}

/* ===== Gallery Filters ===== */
.gallery-filter {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.gallery-filter:hover {
  border-color: var(--accent);
  color: var(--text);
}

.gallery-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.2;
}

.badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.badge-text {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text .section-tag {
  text-align: left;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(192, 149, 108, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 5px;
}

.about-list-item span {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.contact-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 28px 24px;
  border-radius: 16px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 8px;
}

.contact-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 36px 32px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #f4b942;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.review-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.review-source {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.checkatrade-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
}

.checkatrade-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.checkatrade-score {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.checkatrade-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  text-align: left;
  line-height: 1.5;
}

.checkatrade-text strong {
  color: #fff;
}

/* ===== Reviews Grid 2 ===== */
.reviews-grid-2 {
  margin-top: 24px;
  margin-bottom: 50px;
}

/* ===== Areas Served ===== */
.areas-bar {
  background: var(--bg-alt);
  padding: 60px 0;
  text-align: center;
}

.areas-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.areas-list span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all 0.3s;
}

.areas-list span:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: #fff;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

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

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-wide {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text) !important;
  }

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

  .hero {
    background-attachment: scroll;
  }

  .parallax-divider {
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .step {
    max-width: 100%;
  }

  .features-grid,
  .blinds-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .parallax-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blinds-highlights {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}
