/* ========================================
   Výkopové práce Liptov — style.css
   ======================================== */

/* --- CSS Variables (overridden by content.json theme) --- */
:root {
  --primary: #CCA126;
  --secondary: #1D1D1D;
  --accent: #E8B84B;
  --dark: #111111;
  --light: #F5F3EF;
  --text: #2C2C2C;
  --text-light: #777777;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

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

/* --- Focus States (Accessibility) --- */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus:not(:focus-visible) { outline: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  z-index: 10000;
  border-radius: 4px;
  font-weight: 500;
}
.skip-link:focus { top: 8px; }

/* --- Page Loader --- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(204,161,38,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-transform: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,161,38,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* WhatsApp icon in buttons - inherits button text color */
.wa-btn-icon {
  flex-shrink: 0;
  fill: currentColor;
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* --- Section Styling --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav#nav_1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

nav#nav_1.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo:hover { color: var(--primary); }

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .logo-name { display: none; }
}

#nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

#nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--transition);
}
#nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
#nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  #nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1000;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  #nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  #nav-links li {
    width: 100%;
    text-align: center;
  }
  #nav-links a {
    display: block;
    font-size: 1.3rem;
    padding: 16px 24px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  #nav-links a:hover,
  #nav-links a.active {
    color: var(--primary);
    background: rgba(204,161,38,0.08);
  }
  .nav-cta { display: none; }
}

/* ========================================
   HERO
   ======================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 0;
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

#hero .hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* Hero Rotating Cogs */
.hero-cog {
  position: absolute;
  z-index: 1;
  color: rgba(204,161,38,0.12);
  pointer-events: none;
}
.hero-cog svg {
  width: 100%;
  height: 100%;
}
.hero-cog-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 8%;
  animation: cogSpin 20s linear infinite;
}
.hero-cog-2 {
  width: 130px;
  height: 130px;
  bottom: 15%;
  left: 5%;
  animation: cogSpinReverse 15s linear infinite;
}
.hero-cog-3 {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 3%;
  animation: cogSpin 12s linear infinite;
}

@keyframes cogSpin { to { transform: rotate(360deg); } }
@keyframes cogSpinReverse { to { transform: rotate(-360deg); } }

@media (max-width: 768px) {
  .hero-cog-1 { width: 120px; height: 120px; top: 8%; right: 2%; }
  .hero-cog-2 { width: 80px; height: 80px; bottom: 10%; left: 2%; }
  .hero-cog-3 { width: 60px; height: 60px; }
}

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

.hero-badge {
  display: inline-block;
  background: rgba(204,161,38,0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(204,161,38,0.3);
}

#hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ========================================
   STATS (inside about image column)
   ======================================== */
.about-stats {
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-item:hover { background: rgba(204,161,38,0.08); }

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ========================================
   ABOUT
   ======================================== */
#about {
  background:
    radial-gradient(circle at 95% 10%, rgba(204,161,38,0.06) 0%, transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(204,161,38,0.05) 0%, transparent 25%),
    #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--light);
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

.about-text .section-tag { margin-bottom: 8px; }

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(204,161,38,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.about-feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 2px;
}
.about-feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper img { height: 350px; }
  .about-stats { margin-top: -30px; margin-left: 16px; margin-right: 16px; }
}

/* ========================================
   SERVICES
   ======================================== */
#services {
  background:
    radial-gradient(circle at 0% 50%, rgba(204,161,38,0.07) 0%, transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(204,161,38,0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 100%, rgba(204,161,38,0.04) 0%, transparent 25%),
    var(--light);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all var(--transition);
  position: relative;
}
.service-card:last-child { border-bottom: none; }
.service-card:hover {
  background: rgba(204,161,38,0.03);
}

.service-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  padding: 24px 0 24px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.service-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
}

.service-card-text {
  padding-right: 12px;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(204,161,38,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

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

.service-card-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 220px;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .service-card {
    grid-template-columns: 60px 1fr;
  }
  .service-card-number {
    font-size: 2.8rem;
    padding: 28px 0 28px 4px;
  }
  .service-card-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }
  .service-card-text { padding-right: 16px; }
  .service-card-img-wrap { min-height: 200px; margin-right: 16px; }
}

@media (max-width: 480px) {
  .service-card { grid-template-columns: 44px 1fr; }
  .service-card-number { font-size: 2rem; padding: 20px 0 20px 0; }
  .service-card-content { padding: 20px 0; gap: 16px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card-img-wrap { min-height: 180px; margin-right: 12px; border-radius: 8px; }
}

/* ========================================
   GALLERY
   ======================================== */
#gallery {
  background: #fff;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 28px;
  border: 2px solid #e0ddd6;
  border-radius: 50px;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.gallery-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item.gallery-hidden {
  display: none;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #e0ddd6 0%, #c8c3ba 100%);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.3);
}
.gallery-item-overlay i {
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
  pointer-events: none;
}
.lightbox.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ========================================
   PROCESS
   ======================================== */
#process {
  background: var(--secondary);
  color: #fff;
  overflow: hidden;
}

#process .section-tag { color: var(--primary); }
#process .section-header h2 { color: #fff; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.process-step:hover {
  background: rgba(204,161,38,0.08);
  border-color: rgba(204,161,38,0.2);
}

.process-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.process-step p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
#testimonials {
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  color: var(--primary);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
}
.testimonial-author-info span {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* Google Review Button */
.testimonial-google {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e0ddd6;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
  font-family: inherit;
}
.testimonial-google-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 8px rgba(66,133,244,0.15);
}
.testimonial-google-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.google-review-badge {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   CTA BANNER
   ======================================== */
#cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

#cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

#cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

#cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

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

/* ========================================
   AREAS
   ======================================== */
#areas {
  background: #fff;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.area-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.area-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(204,161,38,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--primary);
}

.area-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.area-item p {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ========================================
   FAQ
   ======================================== */
#faq {
  background: var(--light);
}

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

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: left;
  transition: color var(--transition);
  font-family: inherit;
}
.faq-question:hover { color: var(--primary); }

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

/* ========================================
   CONTACT
   ======================================== */
#contact {
  background: #fff;
}

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

.contact-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-item:last-child { border-bottom: none; }

.contact-item i,
.contact-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary);
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  display: block;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
}
.contact-item a:hover { color: var(--primary); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0ddd6;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--light);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,161,38,0.1);
  outline: none;
  background: #fff;
}

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

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.consent-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-success, .form-error {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-success { background: #ecfdf5; color: #065f46; }
.form-error { background: #fef2f2; color: #991b1b; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

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

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-services h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-services li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact h4,
.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.83rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--primary); }

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

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dark);
  color: white;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-content h3 { font-size: 16px; font-weight: 600; width: 100%; margin: 0; }
.cookie-content p { flex: 1; font-size: 14px; margin: 0; opacity: 0.85; min-width: 200px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn-accept {
  padding: 10px 24px; border-radius: 6px; border: none; cursor: pointer;
  background: var(--primary); color: white; font-weight: 600; font-size: 14px;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--accent); }
.cookie-btn-decline {
  padding: 10px 24px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; background: transparent; color: white; font-size: 14px;
  transition: all var(--transition);
}
.cookie-btn-decline:hover { border-color: #fff; }
.cookie-link { color: rgba(255,255,255,0.6); font-size: 12px; text-decoration: underline; }

@media (max-width: 640px) {
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* ========================================
   WHATSAPP & SCROLL TOP
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */
.image-placeholder {
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  position: relative;
}
.image-placeholder::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 8px;
  pointer-events: none;
}

/* ========================================
   ANIMATIONS (GSAP classes)
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   SECTION BACKGROUND DECORATIONS
   ======================================== */

/* --- Stats: diagonal gold lines --- */
.about-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(204,161,38,0.04) 0px,
    rgba(204,161,38,0.04) 1px,
    transparent 1px,
    transparent 20px
  );
  border-radius: var(--radius);
  pointer-events: none;
}

/* --- Section decoration elements --- */
.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* About decorations */
.about-deco-1 {
  top: 50%;
  right: 0;
  width: 6px;
  height: 120px;
  background: var(--primary);
  opacity: 0.12;
  border-radius: 3px;
  transform: translateY(-50%);
}
.about-deco-2 {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(204,161,38,0.1);
  border-radius: 50%;
}

/* Services decorations */
.svc-deco-1 {
  top: 60px;
  left: 40px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(204,161,38,0.1);
  border-radius: 12px;
  transform: rotate(45deg);
}
.svc-deco-2 {
  bottom: 80px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(204,161,38,0.08);
  border-radius: 50%;
}
.svc-deco-3 {
  top: 50%;
  left: -40px;
  width: 6px;
  height: 160px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 3px;
  transform: translateY(-50%);
}

/* --- About: large dot grid + gold arc + glow --- */
#about::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(circle, rgba(204,161,38,0.18) 2px, transparent 2px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
#about::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border: 3px solid rgba(204,161,38,0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Services: diagonal lines + large ring + corner dots --- */
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      transparent 50px,
      rgba(204,161,38,0.04) 50px,
      rgba(204,161,38,0.04) 52px
    );
  pointer-events: none;
  z-index: 0;
}
#services::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 3px solid rgba(204,161,38,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Gallery: corner triangles --- */
#gallery::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 180px 180px 0;
  border-color: transparent rgba(204,161,38,0.04) transparent transparent;
  pointer-events: none;
  z-index: 0;
}
#gallery::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 140px 0 0 140px;
  border-color: transparent transparent transparent rgba(204,161,38,0.04);
  pointer-events: none;
  z-index: 0;
}

/* --- Process: diagonal stripes --- */
#process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 42px
  );
  pointer-events: none;
  z-index: 0;
}
#process::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 10%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(204,161,38,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Testimonials: scattered dots + ring --- */
#testimonials::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 40px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(204,161,38,0.1) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
#testimonials::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(204,161,38,0.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- CTA: radial burst --- */
#cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204,161,38,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Areas: honeycomb-like hexagonal dots --- */
#areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(204,161,38,0.06) 2px, transparent 2px),
    radial-gradient(circle, rgba(204,161,38,0.06) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
  z-index: 0;
}
#areas::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 5%;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(204,161,38,0.08);
  border-radius: 16px;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

/* --- FAQ: crosshatch pattern --- */
#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,0.015) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.015) 25%, transparent 25%);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
#faq::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--primary);
  opacity: 0.04;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

/* --- Contact: subtle topographic curves --- */
#contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(ellipse at 80% 20%, transparent 60%, rgba(204,161,38,0.03) 60%, rgba(204,161,38,0.03) 61%, transparent 61%),
    radial-gradient(ellipse at 70% 40%, transparent 50%, rgba(204,161,38,0.025) 50%, rgba(204,161,38,0.025) 51%, transparent 51%),
    radial-gradient(ellipse at 90% 60%, transparent 40%, rgba(204,161,38,0.02) 40%, rgba(204,161,38,0.02) 41%, transparent 41%);
  pointer-events: none;
  z-index: 0;
}

/* --- Footer: subtle gradient glow --- */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(204,161,38,0.3), transparent);
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(204,161,38,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure section content stays above decorations */
.container,
.hero-content,
.cta-content,
.stats-grid,
.about-grid,
.services-grid,
.gallery-grid,
.gallery-filters,
.process-grid,
.testimonials-grid,
.areas-grid,
.faq-list,
.contact-grid,
.footer-grid,
.footer-bottom,
.footer-credit {
  position: relative;
  z-index: 1;
}

/* ========================================
   FOOTER CREDIT
   ======================================== */
.footer-credit {
  text-align: center;
  padding: 16px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-credit a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--primary); }

/* ========================================
   PRINT
   ======================================== */
@media print {
  nav, footer, .whatsapp-float, .scroll-top-btn, #page-loader, .cookie-banner { display: none !important; }
  section { break-inside: avoid; page-break-inside: avoid; }
  * { color: #000 !important; background: #fff !important; }
}

/* ========================================
   RESPONSIVE — OVERFLOW FIX
   ======================================== */
section,
#about,
#services,
#gallery,
#process,
#testimonials,
#cta,
#areas,
#faq,
#contact {
  overflow: hidden;
}

/* ========================================
   RESPONSIVE — 768px (Tablets)
   ======================================== */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-cog-1 { width: 100px; height: 100px; }
  .hero-cog-2 { width: 70px; height: 70px; }
  .hero-cog-3 { width: 50px; height: 50px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-item a,
  .contact-item span { word-break: break-word; }
}

/* ========================================
   RESPONSIVE — 480px (Small phones)
   ======================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  /* Nav */
  nav#nav_1 { padding: 10px 0; }
  nav#nav_1.scrolled { padding: 8px 0; }
  .nav-logo-img { height: 32px; }
  .logo-name { font-size: 0.85rem; }
  .logo { gap: 6px; }

  /* Hero */
  #hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .hero-cog { display: none; }

  /* Stats */
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }
  .stat-item { padding: 18px 12px; }

  /* About */
  .about-image-wrapper img { height: 260px; }
  .about-text h2 { font-size: 1.5rem; }

  /* Gallery */
  .gallery-filter-btn { padding: 8px 20px; font-size: 0.82rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-step { padding: 24px 20px; }
  .process-number { font-size: 2.2rem; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* CTA */
  #cta { padding: 64px 0; }
  #cta p { font-size: 0.95rem; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .area-item { padding: 20px 12px; }
  .area-item h3 { font-size: 0.88rem; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }

  /* Contact */
  .contact-card { padding: 24px 20px; }
  .contact-map { height: 200px; }

  /* Footer */
  footer { padding: 48px 0 0; }
  .footer-grid { gap: 24px; padding-bottom: 32px; }

  /* Floating buttons */
  .whatsapp-float { bottom: 80px; right: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .scroll-top-btn { right: 16px; width: 40px; height: 40px; }
}

/* ========================================
   RESPONSIVE — 350px (Very small screens)
   ======================================== */
@media (max-width: 350px) {
  .container { padding: 0 12px; }

  /* Hero */
  #hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.85rem; }
  .hero-actions .btn { padding: 12px 20px; font-size: 0.85rem; }

  /* Stats — single column */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 1.3rem; margin-bottom: 0; }
  .stat-label { font-size: 0.72rem; }

  /* About */
  .about-image-wrapper img { height: 200px; }
  .about-text h2 { font-size: 1.3rem; }
  .about-feature-icon { width: 36px; height: 36px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; }

  /* CTA */
  #cta h2 { font-size: 1.4rem; }
  .cta-actions .btn { font-size: 0.85rem; padding: 12px 24px; }

  /* Contact */
  .contact-item a,
  .contact-item span { font-size: 0.88rem; word-break: break-all; }

  /* Footer */
  .footer-brand h3 { font-size: 1rem; }
}
