/*
Theme Name:  ShrishyamaA.P Enterprises
Theme URI:   https://shrishyama.com
Author:      ShrishyamaA.P Enterprises
Author URI:  https://shrishyama.com
Description: Custom WordPress theme for ShrishyamaA.P Enterprises — Construction & Waterproofing Experts, Delhi NCR.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shrishyama
Tags:        construction, waterproofing, business, dark, gold
*/

/* ════════════════════════════════════════
   ROOT VARIABLES
════════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --mid: #2A2A2A;
  --text: #E8E4DC;
  --text-muted: #9A9080;
  --accent: #D4601A;
  --white: #FAF8F3;
}

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

section, div, img { max-width: 100%; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ── GLOBAL ANIMATED CANVAS ── */
#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

nav, section, .stats-bar, footer, .whatsapp-float {
  position: relative;
  z-index: 2;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0) 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

/* ── LOGO ── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: default;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  gap: 0px;
}
.logo-main .char {
  display: inline-block;
  color: var(--gold);
  animation: floatChar 3s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.logo-main .char:nth-child(odd)  { animation-delay: calc(var(--i) * 0.08s); }
.logo-main .char:nth-child(even) { animation-delay: calc(var(--i) * 0.08s + 0.15s); }
@keyframes floatChar {
  0%,100% { transform: translateY(0px); text-shadow: 0 0 10px rgba(201,168,76,0.3); }
  50%      { transform: translateY(-5px); text-shadow: 0 8px 20px rgba(201,168,76,0.7); }
}
.logo:hover .char {
  animation: shimmerChar 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.04s) !important;
}
@keyframes shimmerChar {
  0%   { transform: translateY(0) scale(1); color: var(--gold); }
  40%  { transform: translateY(-8px) scale(1.15); color: var(--gold-light); filter: brightness(1.4); }
  100% { transform: translateY(0) scale(1); color: var(--gold); }
}
.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeSlide 1.5s ease forwards;
}
@keyframes fadeSlide {
  from { opacity: 0; letter-spacing: 8px; }
  to   { opacity: 1; letter-spacing: 4px; }
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  display: block;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0.85) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 900px;
  animation: heroFade 1.2s ease forwards;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge::before {
  content: '';
  width: 50px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(232,228,220,0.75);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 38px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201,168,76,0.3);
}
.btn-secondary {
  border: 1px solid rgba(232,228,220,0.35);
  color: var(--text);
  padding: 16px 38px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll svg { color: var(--gold); }

/* ── HERO FLOATING BRAND ── */
.hero-brand-float {
  position: absolute;
  bottom: 80px; right: 4%;
  display: flex;
  align-items: baseline;
  gap: 12px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
}
.hbf-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  display: inline-flex;
  gap: 0;
}
.hbf-word .hc {
  display: inline-block;
  animation: hbfFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--j) * 0.12s);
}
@keyframes hbfFloat {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  30%     { transform: translateY(-18px) rotate(-1deg); }
  60%     { transform: translateY(-8px) rotate(0.5deg); }
}
.hbf-dot {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--gold);
  animation: hbfFloat 4s ease-in-out infinite 0.5s;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  padding: 0 5%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  overflow: visible;
}
.stats-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: statsSweep 2.4s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
  pointer-events: none;
  z-index: 4;
}
@keyframes statsSweep {
  0%   { left: -60%; opacity: 1; }
  100% { left: 150%; opacity: 1; }
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 36px;
  flex: 1;
  min-width: 140px;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.stat-item.stat-visible {
  animation: statIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes statIn { to { opacity: 1; transform: translateY(0); } }
.stat-item.stat-visible:hover {
  background: rgba(0,0,0,0.09);
  box-shadow: 0 -4px 0 rgba(0,0,0,0.12) inset;
}
.stat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item.stat-visible:hover .stat-inner { transform: translateY(-4px); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.58);
  font-weight: 700;
}
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(13,13,13,0.15);
  margin: 14px 0;
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 35px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
}

/* ── ABOUT ── */
.about {
  background: rgba(20,20,20,0.88);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  z-index: 0;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  padding: 24px 28px;
  z-index: 2;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.about-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.7);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}
.about-feature-text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.about-feature-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }

/* ── SERVICES ── */
.services { background: rgba(13,13,13,0.85); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
}
.service-card {
  background: var(--dark2);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--dark3); transform: translateY(-4px); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 900;
  color: rgba(201,168,76,0.07);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
}
.service-icon { font-size: 36px; margin-bottom: 22px; display: block; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); font-weight: 300; }
.service-list { margin-top: 18px; list-style: none; }
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before { content: '—'; color: var(--gold); font-size: 11px; }

/* ── GALLERY ── */
.gallery { background: rgba(20,20,20,0.88); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 10px;
  margin-top: 55px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item:nth-child(7) { grid-column: span 4; }
.gallery-item:nth-child(8) { grid-column: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-overlay {
  position: absolute;
  bottom: 16px; left: 20px;
  z-index: 2;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PROCESS ── */
.process { background: rgba(28,28,28,0.85); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 28px;
  transition: all 0.3s;
}
.process-step:hover .process-circle { background: var(--gold); color: var(--dark); }
.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p { font-size: 13px; line-height: 1.7; color: var(--text-muted); font-weight: 300; }

/* ── WHY US ── */
.why-us {
  background: rgba(13,13,13,0.88);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 0.9;
  min-width: 50px;
}
.why-content h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-content p { font-size: 14px; line-height: 1.7; color: var(--text-muted); font-weight: 300; }
.why-image { position: relative; }
.why-image img { width: 100%; height: 580px; object-fit: cover; display: block; position: relative; z-index: 1; }
.why-image::after {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  width: 50%; height: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  z-index: 0;
}

/* ── TESTIMONIALS ── */
.testimonials { background: rgba(20,20,20,0.88); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}
.testimonial-card {
  background: var(--dark);
  padding: 38px 34px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-left-color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--text-muted); font-style: italic; font-weight: 300; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── CONTACT ── */
.contact {
  background: rgba(13,13,13,0.88);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-info { padding: 100px 8% 100px 5%; background: var(--dark2); }
.contact-form-area { padding: 100px 5% 100px 8%; }
.contact-details { margin-top: 44px; display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  transition: all 0.3s;
}
.contact-item:hover .contact-icon { background: var(--gold); color: var(--dark); }
.contact-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 16px; color: var(--white); font-weight: 500; text-decoration: none; transition: color 0.3s; display: block; }
.contact-detail-value:hover { color: var(--gold); }
.social-links { display: flex; gap: 14px; margin-top: 44px; }
.social-link {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 22px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--mid);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group select option { background: var(--mid); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 16px 42px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}
.whatsapp-btn:hover { transform: scale(1.1) translateY(-3px); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text);
  padding: 8px 16px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── FOOTER ── */
footer {
  background: rgba(20,20,20,0.92);
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 30px;
}
.footer-logo-area .logo-main { font-size: 24px; }
.footer-desc { font-size: 13px; line-height: 1.8; color: var(--text-muted); margin-top: 16px; font-weight: 300; max-width: 280px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.footer-copy strong { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-image { display: none; }
  .why-us { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 5%; }
  .contact-form-area { padding: 40px 5% 60px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 14px 4%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9999;
  }
  .nav-links.open a { font-size: 22px; letter-spacing: 4px; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .hero-content { padding: 0 6%; }
  .hero-desc { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-secondary { padding: 14px 26px; font-size: 13px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 180px; grid-column: span 1 !important; grid-row: span 1 !important; }
  .whatsapp-float { bottom: 90px; right: 14px; }
  .whatsapp-btn { width: 52px; height: 52px; }
  .wa-tooltip { display: none; }
  section { padding: 60px 4%; }
  .contact-details { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 400px)
════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero h1 { font-size: 26px; }
  .process-steps { grid-template-columns: 1fr; }
  .section-title { font-size: 22px; }
  .contact-detail-value { font-size: 14px; }
}
