/* ============================================
   HERITAGE FABRICATION & WELDING
   Premium Light Theme — Luxury Clean Design
   White + Charcoal + Amber Accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Light Premium Palette */
  --primary: #C8702A;
  --primary-light: #D4833F;
  --primary-dark: #A85D1F;
  --primary-soft: rgba(200, 112, 42, 0.08);
  --primary-medium: rgba(200, 112, 42, 0.15);

  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --bg-cream: #F5F3F0;
  --bg-warm: #F8F6F3;
  --bg-section: #F2F0ED;

  --text-black: #111111;
  --text-dark: #1A1A1A;
  --text-body: #444444;
  --text-muted: #777777;
  --text-light: #999999;

  --border: #E8E5E1;
  --border-light: #F0EDEA;
  --border-dark: #D5D0CA;

  --white: #FFFFFF;
  --black: #111111;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.1);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --section-padding: clamp(80px, 12vw, 140px);
  --container-max: 1200px;
  --container-padding: clamp(20px, 5vw, 48px);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 50%;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ DARK MODE THEME ============ */
[data-theme="dark"] {
  --primary: #E08A3A;
  --primary-light: #ECA05C;
  --primary-dark: #C87020;
  --primary-soft: rgba(224, 138, 58, 0.12);
  --primary-medium: rgba(224, 138, 58, 0.2);

  --bg-white: #0F0F0F;
  --bg-light: #161616;
  --bg-cream: #1A1A1A;
  --bg-warm: #1E1E1E;
  --bg-section: #141414;

  --text-black: #F0ECE8;
  --text-dark: #E5E0DB;
  --text-body: #A8A19A;
  --text-muted: #7A746D;
  --text-light: #5E5852;

  --border: #2A2725;
  --border-light: #222020;
  --border-dark: #3A3634;

  --white: #F0ECE8;
  --black: #0F0F0F;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Smooth color transition for theme switch */
[data-theme="dark"] body,
[data-theme="dark"] .navbar,
[data-theme="dark"] .hero,
[data-theme="dark"] .about,
[data-theme="dark"] .services,
[data-theme="dark"] .gallery,
[data-theme="dark"] .team,
[data-theme="dark"] .testimonials,
[data-theme="dark"] .contact,
[data-theme="dark"] .footer,
[data-theme="dark"] .page-loader {
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Dark mode selection color */
[data-theme="dark"] ::selection {
  background: rgba(224, 138, 58, 0.3);
  color: #F0ECE8;
}

/* Dark scrollbar */
[data-theme="dark"] ::-webkit-scrollbar-track {
  background: #161616;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #3A3634;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---- Theme Toggle Button ---- */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  z-index: 1001;
  transition: all var(--transition-base);
  color: var(--text-body);
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(15deg);
}

.theme-icon {
  position: absolute;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme: show sun, hide moon */
.sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.moon-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* Dark theme: show moon, hide sun */
[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* -- Dark Mode: Navbar -- */
[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 15, 15, 0.92);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .nav-logo-icon {
  background: var(--primary);
  color: #0F0F0F;
}

/* -- Dark Mode: Buttons -- */
[data-theme="dark"] .btn-primary {
  background: var(--primary);
  color: #0F0F0F;
  box-shadow: 0 2px 12px rgba(224, 138, 58, 0.2);
}

[data-theme="dark"] .btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 24px rgba(224, 138, 58, 0.3);
}

[data-theme="dark"] .btn-outline {
  border-color: var(--border-dark);
  color: var(--text-dark);
  background: transparent;
}

[data-theme="dark"] .btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

/* -- Dark Mode: Hero -- */
[data-theme="dark"] .hero-bg::before {
  background: radial-gradient(ellipse at 80% 20%, rgba(224, 138, 58, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .hero-grid-lines {
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(224, 138, 58, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 138, 58, 0.1) 1px, transparent 1px);
}

[data-theme="dark"] .hero-badge {
  background: rgba(224, 138, 58, 0.08);
  border-color: rgba(224, 138, 58, 0.15);
}

/* -- Dark Mode: About -- */
[data-theme="dark"] .about-experience-badge {
  background: var(--primary);
}

[data-theme="dark"] .about-experience-badge .exp-number {
  color: #0F0F0F;
}

[data-theme="dark"] .about-experience-badge .exp-text {
  color: rgba(15, 15, 15, 0.7);
}

[data-theme="dark"] .about-image-card::after {
  box-shadow: inset 0 0 0 1px rgba(224, 138, 58, 0.1);
}

/* -- Dark Mode: Stats Bar -- */
[data-theme="dark"] .stats-bar {
  background: #1A1714;
  border-top: 1px solid rgba(224, 138, 58, 0.1);
  border-bottom: 1px solid rgba(224, 138, 58, 0.1);
}

[data-theme="dark"] .stat-item:not(:last-child)::after {
  background: rgba(224, 138, 58, 0.15);
}

[data-theme="dark"] .stat-number {
  color: var(--primary-light);
}

[data-theme="dark"] .stat-label {
  color: rgba(224, 138, 58, 0.4);
}

/* -- Dark Mode: Services -- */
[data-theme="dark"] .service-card {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .service-card:hover {
  border-color: var(--primary);
  background: #1E1C1A;
  box-shadow: 0 8px 32px rgba(224, 138, 58, 0.08);
}

[data-theme="dark"] .service-card::before {
  background: var(--primary);
}

/* -- Dark Mode: Gallery -- */
[data-theme="dark"] .gallery-filter {
  background: #1A1A1A;
  border-color: var(--border);
  color: var(--text-muted);
}

[data-theme="dark"] .gallery-filter:hover {
  color: var(--text-dark);
  border-color: var(--primary);
}

[data-theme="dark"] .gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0F0F0F;
}

[data-theme="dark"] .gallery-item {
  background: #1A1A1A;
}

[data-theme="dark"] .gallery-item-zoom {
  background: rgba(224, 138, 58, 0.9);
  color: #0F0F0F;
}

/* -- Dark Mode: Team -- */
[data-theme="dark"] .team-highlight {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .team-highlight:hover {
  border-color: var(--primary);
  background: #1E1C1A;
}

[data-theme="dark"] .team-image::after {
  box-shadow: inset 0 0 0 1px rgba(224, 138, 58, 0.1);
}

/* -- Dark Mode: Testimonials -- */
[data-theme="dark"] .testimonial-card-inner {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .testimonial-avatar {
  background: var(--primary);
  color: #0F0F0F;
}

[data-theme="dark"] .testimonials-dot {
  background: var(--border-dark);
}

[data-theme="dark"] .testimonials-dot.active {
  background: var(--primary);
}

/* -- Dark Mode: Contact -- */
[data-theme="dark"] .contact-method {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .contact-method:hover {
  border-color: var(--primary);
  background: #1E1C1A;
}

[data-theme="dark"] .contact-social a {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .contact-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #0F0F0F;
}

[data-theme="dark"] .contact-form-wrapper {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: #0F0F0F;
  border-color: var(--border);
  color: var(--text-dark);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: var(--text-light);
}

[data-theme="dark"] .form-group select option {
  background: #1A1A1A;
  color: var(--text-dark);
}

[data-theme="dark"] .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8702A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* -- Dark Mode: Footer -- */
[data-theme="dark"] .footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(224, 138, 58, 0.08);
}

[data-theme="dark"] .footer-logo-icon {
  background: var(--primary);
  color: #0A0A0A;
}

[data-theme="dark"] .footer-social a:hover {
  background: var(--primary);
  color: #0A0A0A;
}

/* -- Dark Mode: Floating Elements -- */
[data-theme="dark"] .back-to-top {
  background: #1A1A1A;
  border-color: var(--border);
  color: var(--text-muted);
}

[data-theme="dark"] .back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #0F0F0F;
}

/* -- Dark Mode: Page Loader -- */
[data-theme="dark"] .page-loader {
  background: #0F0F0F;
}

[data-theme="dark"] .loader-logo {
  color: var(--primary);
}

[data-theme="dark"] .loader-bar {
  background: var(--border);
}

[data-theme="dark"] .loader-bar-fill {
  background: var(--primary);
}

/* -- Dark Mode: Mobile Nav -- */
[data-theme="dark"] .nav-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* -- Dark Mode: Lightbox -- */
[data-theme="dark"] .lightbox {
  background: rgba(0, 0, 0, 0.96);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: rgba(200, 112, 42, 0.2);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- Containers --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-black);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title .gradient-text {
  color: var(--primary);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: var(--text-dark);
}

.btn-outline {
  border: 1.5px solid var(--border-dark);
  color: var(--text-dark);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--black);
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  background: #20BD5A;
}

.btn-accent {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(200, 112, 42, 0.2);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 112, 42, 0.3);
  background: var(--primary-dark);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--black) 0%, #2A2A2A 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(200, 112, 42, 0.25);
}

[data-theme="dark"] .nav-logo-icon {
  background: linear-gradient(135deg, #252525 0%, #1A1A1A 100%);
  color: #F0ECE8;
  border: 1px solid rgba(224, 138, 58, 0.25);
}

[data-theme="dark"] .nav-logo:hover .nav-logo-icon {
  box-shadow: 0 4px 16px rgba(224, 138, 58, 0.35);
  border-color: rgba(224, 138, 58, 0.5);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-black);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-black);
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  margin-top: 2px;
  transition: width var(--transition-base);
  margin-left: auto;
  margin-right: auto;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 16px;
}

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

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-black);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.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;
  background: var(--bg-cream);
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200, 112, 42, 0.06) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 100px 100px;
}

#sparkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  box-shadow: var(--shadow-xs);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--text-black);
  line-height: 1.0;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .brand-name {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(3.2rem, 7.5vw, 5.5rem);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--primary);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% {
    top: -50%;
  }

  100% {
    top: 100%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==================== ABOUT ==================== */
.about {
  background: var(--bg-white);
}

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

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.about-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.about-experience-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--black);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.about-experience-badge .exp-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-label::before {
  display: none;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.85;
  font-size: 0.95rem;
}

.about-text strong {
  color: var(--primary);
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about-feature:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.about-feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: var(--black);
  padding: 56px 0;
}

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

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ==================== SERVICES ==================== */
.services {
  background: var(--bg-cream);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 10px;
}

.service-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
}

/* ==================== GALLERY ==================== */
.gallery {
  background: var(--bg-white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-filter {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

.gallery-filter.active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

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

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  font-size: 0.92rem;
}

.gallery-item-category {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 4px;
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item.video-item::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  z-index: 5;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.gallery-item.video-item:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10001;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10001;
  transition: all var(--transition-fast);
  border: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Gallery Load More */
.gallery-hidden {
  display: none !important;
}

.gallery-hidden.gallery-show {
  display: block !important;
  animation: galleryFadeIn 0.5s ease forwards;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-load-more {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-load-more .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-load-more .btn svg {
  transition: transform 0.3s ease;
}

#loadMoreBtn:hover svg {
  transform: translateY(3px);
}

#showLessBtn:hover svg {
  transform: translateY(-3px);
}

/* ==================== TEAM ==================== */
.team {
  background: var(--bg-cream);
}

.team-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.team-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-slider {
  position: relative;
  width: 100%;
  height: 480px;
}

.team-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.team-slide.active {
  opacity: 1;
}

.team-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.team-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 3;
}

.team-info .section-label {
  text-align: left;
}

.team-info .section-label::before {
  display: none;
}

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

.team-text {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.team-text strong {
  color: var(--primary);
  font-weight: 600;
}

.team-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.team-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.team-highlight:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.team-highlight-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.team-highlight-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-black);
  margin-bottom: 4px;
}

.team-highlight-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--bg-white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card-inner {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card-inner::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 32px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-black);
  font-size: 0.92rem;
}

.testimonial-author-info p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  background: var(--border-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--black);
}

/* ==================== FAQ ==================== */
.faq {
  background: var(--bg-cream);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-dark);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(200, 112, 42, 0.08);
}

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

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* Dark mode FAQ */
[data-theme="dark"] .faq-item {
  background: #1A1A1A;
  border-color: var(--border);
}

[data-theme="dark"] .faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(224, 138, 58, 0.08);
}

/* ==================== CONTACT MAP ==================== */
.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  display: block;
}

[data-theme="dark"] .contact-map {
  border-color: var(--border);
  filter: brightness(0.8) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

/* ==================== CONTACT ==================== */
.contact {
  background: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info .section-label {
  text-align: left;
}

.contact-info .section-label::before {
  display: none;
}

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

.contact-description {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--primary-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-method-text h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-black);
  margin-bottom: 2px;
}

.contact-method-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-method-text a {
  color: var(--text-muted);
}

.contact-method-text a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: 10px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.contact-social a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--white);
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  color: #10B981;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-black);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

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

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--white);
  color: var(--black);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

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

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

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

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  color: var(--primary);
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25D366;
  border-radius: 100px;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
}

.whatsapp-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

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

.whatsapp-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-black);
  font-style: italic;
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--black);
  border-radius: 2px;
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderFill {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 28px 40px;
    gap: 4px;
    transition: right var(--transition-base);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-body);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .about-image-card img {
    height: 380px;
  }

  .about-experience-badge {
    right: 16px;
    bottom: -12px;
    width: 100px;
    height: 100px;
  }

  .about-experience-badge .exp-number {
    font-size: 2rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

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

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

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

  .team-slider {
    height: 320px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .whatsapp-float a span {
    display: none;
  }

  .whatsapp-float a {
    padding: 14px;
    border-radius: 50%;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
  }
}

/* Dark mode mobile nav panel */
@media (max-width: 768px) {
  [data-theme="dark"] .nav-links {
    background: #1A1A1A;
    border-left-color: var(--border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }
}

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

  .hero-title .brand-name {
    font-size: 2.8rem;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .testimonial-card-inner {
    padding: 28px;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}