/* ===== CSS VARIABLES & RESET ===== */
:root {
  --bg: #0f0f0f;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --teal: #00c9b1;
  --teal2: #00e5cc;
  --teal-dark: #009e8a;
  --white: #f5f5f5;
  --grey: #888;
  --charcoal: #222;
  --border: rgba(0,201,177,0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled {
  height: 64px;
  background: rgba(8,8,8,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
nav.scrolled .nav-logo-img {
  width: 120px;
  height: auto;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--grey); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--teal); color: #000 !important;
  padding: 8px 20px; border-radius: 2px;
  font-weight: 700 !important; letter-spacing: 1px !important;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal2) !important; color: #000 !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--white);
  transition: all 0.3s; display: block;
}
.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); }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1f1e 50%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 60%,
      rgba(0,201,177,0.08) 0%,
      transparent 70%
    );
}
.hero-badge {
  display: inline-block; background: rgba(0,201,177,0.1);
  border: 1px solid var(--teal); color: var(--teal);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 2px; margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.logo-hero {
  width: 320px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-hero:hover { transform: scale(1.05); }
@keyframes logoFloat {
  0%,100% { transform: translateY(0); box-shadow: 0 0 60px rgba(0,201,177,0.3), 0 20px 40px rgba(0,0,0,0.5); }
  50% { transform: translateY(-12px); box-shadow: 0 0 80px rgba(0,201,177,0.5), 0 40px 60px rgba(0,0,0,0.4); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1; letter-spacing: 4px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero h1 span { color: var(--teal); }
.hero-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--grey); margin: 1rem 0 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-slogan span { color: var(--teal); }
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.btn {
  padding: 14px 36px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border-radius: 2px;
}
.btn-primary { background: var(--teal); color: #000; }
.btn-primary:hover { background: var(--teal2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,201,177,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--teal); font-size: 1.4rem; opacity: 0.6;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTIONS ===== */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem; font-weight: 600;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: 2px; line-height: 1.05;
  margin-bottom: 1rem;
}
.section-title span { color: var(--teal); }
.section-sub { color: var(--grey); font-size: 1rem; max-width: 560px; line-height: 1.7; }

/* ===== DIVIDER ===== */
.teal-line { width: 50px; height: 3px; background: var(--teal); margin: 1rem 0 1.5rem; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-preview-img {
  aspect-ratio: 4/3;
  border-radius: 4px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.about-preview-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.about-preview-img:hover img { transform: scale(1.05); }
.about-preview-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,201,177,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.about-glow {
  position: absolute; top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,201,177,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.stat-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
  color: var(--teal); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  position: relative;
  transition: all 0.35s; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); transform: scaleX(0);
  transition: transform 0.35s; z-index: 2;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(0,201,177,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap {
  overflow: hidden; position: relative;
}
.service-card-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(15,15,15,0.9) 100%);
  pointer-events: none;
}
.service-card-body { padding: 2rem 2rem 2.5rem; }
.service-icon {
  width: 50px; height: 50px; background: rgba(0,201,177,0.1);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--teal); margin-bottom: 1rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: rgba(0,201,177,0.2); box-shadow: 0 0 20px rgba(0,201,177,0.2); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--grey); font-size: 0.92rem; line-height: 1.7; }
.card-arrow { color: var(--teal); margin-top: 1.5rem; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.why-card {
  border-left: 3px solid var(--teal); padding: 1.5rem 1.5rem;
  background: var(--bg3); border-radius: 0 4px 4px 0;
  transition: all 0.3s;
}
.why-card:hover { transform: translateX(4px); background: rgba(0,201,177,0.05); }
.why-card i { color: var(--teal); font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.why-card p { color: var(--grey); font-size: 0.88rem; line-height: 1.6; }

/* ===== PARTNERS ===== */
.partners-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 3rem; }
.partner-badge {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 1.2rem 2rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); transition: all 0.3s; cursor: default;
}
.partner-badge:hover { border-color: var(--teal); color: var(--teal); box-shadow: 0 0 20px rgba(0,201,177,0.1); }

/* ===== CONTACT BANNER ===== */
.contact-banner {
  background: linear-gradient(135deg, #0a1f1e 0%, #0f2a28 50%, #0a1f1e 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 70px 5%;
}
.contact-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 3px; margin-bottom: 1rem; }
.contact-banner p { color: var(--grey); margin-bottom: 2rem; }
.wa-btn {
  background: #25D366; color: #fff;
  padding: 14px 36px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 0 30px rgba(37,211,102,0.25);
}
.wa-btn:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 15px rgba(37,211,102,0); }
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 42vh; background: linear-gradient(135deg, #0a0a0a 0%, #0f1f1e 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 120px 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(0,201,177,0.07) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 4px;
}
.page-hero h1 span { color: var(--teal); }
.page-hero p { color: var(--grey); margin-top: 1rem; font-size: 1.05rem; }

/* ===== ABOUT PAGE ===== */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.mv-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
}
.mv-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; margin-bottom: 1rem; }
.mv-card h3 span { color: var(--teal); }
.mv-card p { color: var(--grey); line-height: 1.8; font-size: 0.95rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-item {
  text-align: center; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 2rem 1.5rem; transition: all 0.3s;
}
.value-item:hover { border-color: var(--teal); transform: translateY(-4px); }
.value-item i { font-size: 2rem; color: var(--teal); margin-bottom: 1rem; display: block; }
.value-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.value-item p { color: var(--grey); font-size: 0.85rem; line-height: 1.6; }

.reg-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-left: 4px solid var(--teal); border-radius: 0 4px 4px 0;
  padding: 2rem 2.5rem; margin-top: 2rem;
}
.reg-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 1rem; }
.reg-box p { color: var(--grey); font-size: 0.95rem; line-height: 1.8; }

/* ===== SERVICES PAGE ===== */
.service-detail {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; margin-bottom: 2rem;
}
.service-detail-header {
  position: relative; overflow: hidden;
  min-height: 220px;
  display: flex; align-items: flex-end;
}
.service-detail-header-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  filter: brightness(0.4);
  transition: transform 0.5s;
}
.service-detail:hover .service-detail-header-bg { transform: scale(1.05); }
.service-detail-header-content {
  position: relative; z-index: 1;
  padding: 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  width: 100%;
  background: linear-gradient(transparent, rgba(15,15,15,0.95) 40%);
}
.service-detail-header .icon {
  width: 70px; height: 70px; background: rgba(0,201,177,0.15);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--teal); flex-shrink: 0;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,201,177,0.3);
}
.service-detail-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; }
.service-detail-header p { color: var(--grey); font-size: 0.92rem; margin-top: 0.4rem; line-height: 1.6; }
.service-detail-body { padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-sub h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 1rem; }
.service-sub ul { list-style: none; }
.service-sub ul li {
  color: var(--grey); font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 0.75rem;
}
.service-sub ul li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.gallery-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; aspect-ratio: 4/3;
  position: relative; overflow: hidden; cursor: pointer;
  transition: all 0.3s;
}
.gallery-item:hover { border-color: var(--teal); transform: scale(1.02); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; min-height: 300px; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); opacity: 0; transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal); color: #000;
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: 2px;
  z-index: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-form { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 12px 16px; color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,177,0.08); }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; background: rgba(0,201,177,0.1); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.info-item h4 { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; font-weight: 600; }
.info-item p { color: var(--grey); font-size: 0.92rem; line-height: 1.6; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; margin-top: 0.5rem; }
.hours-grid span { font-size: 0.88rem; color: var(--grey); }
.hours-grid .day { color: var(--white); font-weight: 500; }

.map-placeholder {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; margin-top: 3rem; height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--grey);
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,201,177,0.03) 0%, transparent 60%);
}
.map-placeholder i { font-size: 3rem; color: var(--teal); opacity: 0.5; }
.map-placeholder p { font-size: 0.9rem; letter-spacing: 1px; }
.map-placeholder a { color: var(--teal); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }

/* ===== QUOTE PAGE ===== */
.quote-wrap { max-width: 700px; margin: 0 auto; }
.quote-form { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 3rem; }
.quote-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.quote-form p { color: var(--grey); margin-bottom: 2rem; font-size: 0.95rem; }

/* ===== FOOTER ===== */
footer {
  background: #080808; border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo-link { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; text-decoration: none; }
.footer-brand .footer-logo-img { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; }
.footer-brand .footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 3px; color: var(--white); }
.footer-brand .footer-logo-text span { color: var(--teal); }
.footer-brand p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.9rem; text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,201,177,0.08); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: var(--grey); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--grey); font-size: 0.82rem; }
.footer-bottom span { color: var(--teal); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 100px; right: 28px; z-index: 9999;
  background: var(--teal); color: #000;
  padding: 14px 24px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
  transform: translateX(200%); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(0); }

/* ===== ANIMATE ON SCROLL ===== */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-vision { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-body { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { aspect-ratio: 4/3; }
  section { padding: 60px 5%; }
  .service-detail-header { flex-direction: column; align-items: flex-start; }
  .service-detail-header-content { flex-direction: column; align-items: flex-start; }
}
