/* ============================================================
   VVR Constructions – Light Glassmorphism Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary: #c47f0d;
  --primary-dark: #a66a00;
  --primary-light: #e8a020;

  --accent: #1a6fc4;
  --accent-dark: #0f4d8a;

  --bg-body: #f5f7fa;
  --bg-section: #eef2f8;
  --bg-white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.95);
  --glass-hover: rgba(255, 255, 255, 0.88);
  --glass-strong: rgba(255, 255, 255, 0.85);
  --glass-dark-bg: rgba(20, 30, 50, 0.82);

  --text-primary: #1e2a3b;
  --text-secondary: #4a5870;
  --text-muted: #6e7f96;

  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 40px rgba(196, 127, 13, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --font-head: 'Outfit', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #e8edf5;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

/* ── Background Mesh ───────────────────────────────────────── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 10% 5%, rgba(196, 127, 13, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(26, 111, 196, 0.06) 0%, transparent 55%),
    linear-gradient(160deg, #f5f7fa 0%, #eef2f8 60%, #f5f7fa 100%);
}

/* ── Typography ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-head);
  box-shadow: 0 4px 14px rgba(196, 127, 13, 0.30);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 0;
}

.nav-logo-text span:last-child {
  font-size: 0.66rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(196, 127, 13, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>.nav-link::after {
  content: ' \25be';
  font-size: 0.7rem;
}

.nav-dropdown:hover>.nav-link {
  color: var(--text-primary);
  background: rgba(196, 127, 13, 0.08);
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  padding-top: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: opacity 0.18s ease, visibility 0.18s, transform 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--text-secondary);
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  color: var(--primary);
  background: rgba(196, 127, 13, 0.07);
}

.nav-cta {
  margin-left: 0.6rem;
  padding: 0.48rem 1.15rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 3px 12px rgba(196, 127, 13, 0.28);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 127, 13, 0.40);
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.2rem 1.5rem 2rem;
  z-index: 999;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-menu .mobile-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin: 1rem 0 0.4rem;
  padding-top: 0.5rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 5rem;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideshow 18s linear infinite;
  z-index: 0;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #152338 0%, #1a3055 40%, #0f2240 100%);
  z-index: 0;
}

.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(196, 127, 13, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 60%, rgba(26, 111, 196, 0.18) 0%, transparent 55%);
}

.hero-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.38);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.38rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-light), #ffc94d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 130px 2rem 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 0.6rem;
  color: #fff;
}

.page-hero .breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb a {
  color: var(--primary-light);
}

.page-hero .breadcrumb a:hover {
  color: #ffc94d;
}

.page-hero .hero-badge {
  margin-bottom: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.72rem 1.7rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  box-shadow: 0 4px 18px rgba(196, 127, 13, 0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196, 127, 13, 0.45);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  color: #fff;
}

.btn-glass-dark {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.10);
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
}

.btn-glass-dark:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary-light);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.83rem;
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

/* ── Glass Cards ──────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  background: var(--glass-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(196, 127, 13, 0.15);
}

.glass-card-sm {
  padding: 1.3rem;
  border-radius: var(--radius-md);
}

/* ── Sections ─────────────────────────────────────────────── */
section {
  padding: 4rem 2rem 0;
  position: relative;
}

section:last-of-type {
  padding-bottom: 4rem;
}

section.section-alt {
  background: rgba(238, 242, 248, 0.5);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-light);
}

.section-title {
  margin-bottom: 0.9rem;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-header.centered .section-label {
  justify-content: center;
}

.section-header.centered .section-label::before {
  display: none;
}

/* ── Grid Layouts ─────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-asymmetric {
  grid-template-columns: 1.2fr 0.8fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

/* ── Service Cards ────────────────────────────────────────── */
.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--glass-hover);
  transform: translateY(-7px);
  box-shadow: var(--shadow-md), 0 0 32px rgba(196, 127, 13, 0.10);
  border-color: rgba(196, 127, 13, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(196, 127, 13, 0.12), rgba(196, 127, 13, 0.05));
  border: 1px solid rgba(196, 127, 13, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-light);
  margin-bottom: 1.1rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(196, 127, 13, 0.2), rgba(196, 127, 13, 0.08));
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.service-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 9px;
  color: var(--primary);
}

.service-link::after {
  content: '\2192';
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #152338 0%, #1a3055 100%);
  padding: 3.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), #ffc94d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ── Image Placeholder ────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-placeholder-inner {
  background: linear-gradient(135deg, #e8edf5 0%, #dde5f0 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  border-radius: var(--radius-lg);
}

.img-placeholder-inner .ph-icon {
  font-size: 2rem;
  color: rgba(196, 127, 13, 0.5);
}

.img-placeholder-inner span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.img-real {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

/* ── Contact Info ─────────────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(196, 127, 13, 0.12), rgba(196, 127, 13, 0.05));
  border: 1px solid rgba(196, 127, 13, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.contact-info h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-info p {
  color: var(--text-primary);
  font-size: 0.92rem;
  margin: 0;
}

.contact-info a {
  color: var(--text-primary);
  font-size: 0.92rem;
}

.contact-info a:hover {
  color: var(--primary-light);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.3rem;
}

label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 127, 13, 0.10);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

select option {
  background: #fff;
  color: var(--text-primary);
}

input::placeholder,
textarea::placeholder {
  color: #9aa5b8;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #12213a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  padding: 4rem 2rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.7fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 270px;
  margin-top: 1rem;
}

.footer-brand .nav-logo-text span:first-child {
  color: #fff;
}

.footer-brand .nav-logo-text span:last-child {
  color: rgba(255, 255, 255, 0.4);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.87rem;
  padding: 0.28rem 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}

.footer-contact-val {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.footer-contact-val a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.footer-contact-val a:hover {
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
}

.social-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.40);
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.4rem;
}

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.09), transparent);
  margin: 0;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  background: rgba(238, 242, 248, 0.5);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(196, 127, 13, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Features ─────────────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(196, 127, 13, 0.12), rgba(196, 127, 13, 0.04));
  border: 1px solid rgba(196, 127, 13, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.feature-text h4 {
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.feature-text p {
  font-size: 0.88rem;
  margin: 0;
}

/* ── Accordion ────────────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.accordion-btn:hover {
  color: var(--primary-light);
}

.accordion-btn .acc-icon {
  transition: var(--transition);
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--text-muted);
}

.accordion-btn.open .acc-icon {
  transform: rotate(45deg);
  color: var(--primary-light);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body.open {
  max-height: 600px;
}

.accordion-body-inner {
  padding-bottom: 1.1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.3rem;
  margin-bottom: 1.8rem;
}

.step-number {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(196, 127, 13, 0.28);
}

.step-content h4 {
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.step-content p {
  font-size: 0.88rem;
  margin: 0;
}

/* ── Tags ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tag-primary {
  background: rgba(196, 127, 13, 0.10);
  border-color: rgba(196, 127, 13, 0.22);
  color: var(--primary);
}

/* ── Service Page Image Block ─────────────────────────────── */
.service-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Contact Form Embed Block ─────────────────────────────── */
.form-embed {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.7s ease both;
}

.fade-in-delay-1 {
  animation-delay: 0.15s;
}

.fade-in-delay-2 {
  animation-delay: 0.30s;
}

.fade-in-delay-3 {
  animation-delay: 0.45s;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilities ────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-primary-color {
  color: var(--primary-light);
}

.text-muted {
  color: var(--text-muted);
}

.text-sm {
  font-size: 0.875rem;
}

.fw-600 {
  font-weight: 600;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 1.5rem 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-asymmetric {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  section {
    padding: 3.5rem 1.5rem 0;
  }

  section:last-of-type {
    padding-bottom: 3.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .page-hero {
    padding: 110px 1.5rem 55px;
  }

  .form-embed {
    padding: 1.75rem;
  }

  .glass-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-badge {
    font-size: 0.73rem;
  }
}