/* ============================================
   Rey's Drywall LLC — Ultra Premium Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #06101f;
  --bg2: #0c1a2e;
  --card: #0f1f38;
  --card-h: #142744;
  --surface: #162a48;
  --accent: #d4a853;
  --accent-l: #f0d48a;
  --accent-g: rgba(212, 168, 83, 0.2);
  --white: #fff;
  --text: #c0cce0;
  --muted: #6b7f9a;
  --border: rgba(255, 255, 255, 0.06);
  --glass: rgba(12, 26, 46, 0.7);
  --overlay: rgba(6, 16, 31, 0.8);
  --ff-h: 'Outfit', sans-serif;
  --ff-b: 'Inter', sans-serif;
  --hero-fs: clamp(2.6rem, 6vw, 5.5rem);
  --h2: clamp(1.9rem, 4vw, 3rem);
  --h3: clamp(1.15rem, 2vw, 1.45rem);
  --radius: 16px;
  --pill: 50px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.2s ease;
  --smooth: 0.6s var(--ease);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

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

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

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

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

ul,
ol {
  list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-h);
  color: var(--white);
  line-height: 1.15
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.section {
  padding: 7rem 0;
  position: relative
}

.section-label {
  font-family: var(--ff-b);
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: inline-block
}

.section-title {
  font-size: var(--h2);
  font-weight: 800;
  margin-bottom: 1.2rem
}

.section-subtitle {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  border-radius: 2px;
  margin-bottom: 2rem
}

.accent-line.center {
  margin-left: auto;
  margin-right: auto
}

/* --- Noise Overlay (Premium Texture) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--ff-b);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pill);
  cursor: pointer;
  border: none;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c4943f);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(212, 168, 83, 0.35)
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform .5s
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(212, 168, 83, 0.5)
}

.btn-primary:hover::after {
  transform: translateX(100%)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.15)
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 168, 83, 0.06)
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all .35s var(--ease)
}

.header.scrolled {
  background: rgba(6, 16, 31, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border)
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), #c4943f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.logo-text {
  font-family: var(--ff-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white)
}

.logo-text span {
  color: var(--accent)
}

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

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .5px;
  position: relative;
  padding: 4px 0
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width .35s var(--ease)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white)
}

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

.nav-cta {
  margin-left: 12px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .35s var(--ease)
}

.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)
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 16, 31, 0.93) 0%, rgba(6, 16, 31, 0.65) 50%, rgba(6, 16, 31, 0.88) 100%)
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  font-size: .875rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px)
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4)
  }

  50% {
    opacity: .5;
    box-shadow: 0 0 0 6px rgba(212, 168, 83, 0)
  }
}

.hero h1 {
  font-size: var(--hero-fs);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -1px
}

.hero h1 .accent,
.stat-number .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border)
}

.stat {
  text-align: center
}

.stat-number {
  font-family: var(--ff-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1
}

.stat-label {
  font-size: .875rem;
  color: var(--muted);
  margin-top: 6px
}

.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .2;
  z-index: 0
}

.hero-decor-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -150px
}

.hero-decor-2 {
  width: 350px;
  height: 350px;
  background: #2a5cbf;
  bottom: -80px;
  left: -80px
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 83, 0.1);
  pointer-events: none
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px
}

.about-image-badge .badge-number {
  font-family: var(--ff-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1
}

.about-image-badge .badge-text {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.3
}

.about-content {
  padding-left: 1.5rem
}

.about-text {
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.9
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.06);
  transition: all .3s var(--ease)
}

.about-feature:hover {
  background: rgba(212, 168, 83, 0.06);
  border-color: rgba(212, 168, 83, 0.12)
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem
}

.about-feature-text h4 {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 2px
}

.about-feature-text p {
  font-size: .78rem;
  color: var(--muted)
}

/* ============ SERVICES ============ */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%)
}

.services-header {
  text-align: center;
  margin-bottom: 4rem
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  opacity: 0;
  transition: opacity .35s
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 168, 83, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.15);
  background: var(--card-h);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 168, 83, 0.06)
}

.service-card:hover::before {
  opacity: 1
}

.service-card:hover::after {
  opacity: 1
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all .35s var(--ease)
}

.service-card:hover .service-icon {
  background: rgba(212, 168, 83, 0.15);
  box-shadow: 0 0 24px rgba(212, 168, 83, 0.15);
  transform: scale(1.05)
}

.service-card h3 {
  font-size: var(--h3);
  font-weight: 700;
  margin-bottom: .5rem
}

.service-card p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7
}

/* ============ GALLERY ============ */
.gallery-header {
  text-align: center;
  margin-bottom: 4rem
}

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

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

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--smooth)
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 31, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem
}

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

.gallery-overlay-text {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem
}

.gallery-overlay-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: var(--pill);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 500;
  margin-bottom: 6px
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--bg)
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem
}

.reviews-iframe-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  min-height: 400px
}

.reviews-iframe-wrap iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  background: #fff
}

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem
}

.contact-info {
  padding-right: 1.5rem
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 2rem
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem
}

.contact-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px
}

.contact-info-item p,
.contact-info-item a {
  color: var(--muted);
  font-size: .875rem
}

.contact-info-item a:hover {
  color: var(--accent)
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 2.5rem
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
  transition: all .35s var(--ease)
}

.contact-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 168, 83, 0.08);
  transform: translateY(-3px)
}

.contact-form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem
}

.contact-form-wrapper h3 {
  font-size: var(--h3);
  font-weight: 700;
  margin-bottom: 1rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem
}

.form-group {
  margin-bottom: 1.2rem
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--ff-b);
  font-size: 1rem;
  transition: all var(--fast);
  outline: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted)
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-g)
}

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

.form-group select option {
  background: var(--card);
  color: var(--text)
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  justify-content: center
}

/* ============ FOOTER ============ */
.footer {
  background: #040c18;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem
}

.footer-brand .logo {
  margin-bottom: 1.2rem
}

.footer-brand p {
  color: var(--muted);
  font-size: .875rem;
  max-width: 280px;
  line-height: 1.8
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--white)
}

.footer-col li {
  margin-bottom: 10px
}

.footer-col a {
  color: var(--muted);
  font-size: .875rem;
  transition: color var(--fast)
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom p {
  color: var(--muted);
  font-size: .875rem
}

.footer-bottom-links {
  display: flex;
  gap: 24px
}

.footer-bottom-links a {
  color: var(--muted);
  font-size: .875rem
}

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

/* ============ WHATSAPP WIDGET ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.whatsapp-tooltip {
  background: var(--white);
  color: #1a1a2e;
  padding: 10px 18px;
  border-radius: 12px 12px 0 12px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all .35s var(--ease);
  pointer-events: none;
  white-space: nowrap
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all .35s var(--ease);
  cursor: pointer;
  text-decoration: none
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45)
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white)
}

.whatsapp-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: wa-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite
}

@keyframes wa-ping {
  0% {
    transform: scale(1);
    opacity: .6
  }

  75%,
  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s var(--ease)
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all .8s var(--ease)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all .8s var(--ease)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all .8s var(--ease)
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1)
}

.stagger-children .reveal {
  transition-delay: calc(var(--i, 0) * .12s)
}

/* ============ RESPONSIVE — TABLET ============ */
@media(max-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .about-content {
    padding-left: 0
  }

  .about-image img {
    height: 350px
  }

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

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

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 4/3
  }

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

  .contact-info {
    padding-right: 0
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }
}

/* ============ RESPONSIVE — MOBILE (Ultra Sexy) ============ */
@media(max-width:768px) {
  .section {
    padding: 4.5rem 0
  }

  .container {
    padding: 0 1.2rem
  }

  /* Full-screen mobile nav with glassmorphism */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 16, 31, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 20px;
    transition: right .4s var(--ease);
    border-left: 1px solid rgba(212, 168, 83, 0.1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5)
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid var(--border)
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    justify-content: center
  }

  .hamburger {
    display: flex
  }

  /* Hero — full bleed mobile */
  .hero {
    min-height: 100vh;
    min-height: 100dvh
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem)
  }

  .hero-desc {
    font-size: 1rem
  }

  .hero-badge {
    font-size: .78rem;
    padding: 6px 14px
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
    padding: 16px 24px
  }

  .hero-stats {
    gap: 0;
    justify-content: space-around
  }

  .stat-number {
    font-size: 1.7rem
  }

  /* About — stacked with full-bleed image */
  .about-image {
    margin: 0 -1.2rem;
    border-radius: 0
  }

  .about-image img {
    height: 280px;
    border-radius: 0
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: .8rem
  }

  .about-feature {
    padding: 14px
  }

  .about-content .btn {
    width: 100%;
    justify-content: center
  }

  /* Services — horizontal scroll cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .service-card {
    padding: 1.8rem;
    border-radius: var(--radius)
  }

  .service-card:hover {
    transform: translateY(-4px)
  }

  /* Gallery — 2-col masonry on mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem
  }

  .gallery-item {
    border-radius: 12px
  }

  .gallery-overlay {
    padding: 1rem;
    opacity: 1;
    background: linear-gradient(to top, rgba(6, 16, 31, 0.75) 0%, transparent 40%)
  }

  /* Reviews */
  .reviews-iframe-wrap {
    margin: 0 -1.2rem;
    border-radius: 0;
    border-left: none;
    border-right: none
  }

  /* Contact — stacked with full-width form */
  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
    border-radius: var(--radius)
  }

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

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 16px;
    font-size: 16px
  }

  /* prevents iOS zoom */

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center
  }

  /* WhatsApp — smaller on mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 16px
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px
  }

  .whatsapp-pulse {
    width: 54px;
    height: 54px
  }

  .whatsapp-tooltip {
    display: none
  }
}

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem
  }

  .stat {
    flex: 1;
    min-width: 80px
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-item.tall {
    aspect-ratio: 4/3
  }
}