/* ===========================
   GIEDEN – Main CSS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── CUSTOM PROPERTIES */
:root {
  --primary: #0f172a;
  --primary-hover: #1e293b;
  --secondary: #2563eb;
  --secondary-hover: #1d4ed8;
  --accent: #38bdf8;
  --bg: #ffffff;
  --bg-dark: #020617;
  --text: #334155;
  --text-light: #64748b;
  --text-dark: #cbd5e1;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-dark: rgba(15, 23, 42, 0.8);
  --border: rgba(15, 23, 42, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.14);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.18);
  --font: 'Red Hat Display', sans-serif;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #020617;
  --bg-dark: #0f172a;
  --text: #cbd5e1;
  --text-light: #94a3b8;
  --glass: rgba(15, 23, 42, 0.85);
  --border: rgba(255, 255, 255, 0.08);
}

/* ── RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

/* ── CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* ── SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 16px;
}

[data-theme="dark"] .section-title {
  color: #f1f5f9;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ── HEADER / NAV */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgb(23, 32, 51);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  transition: color var(--transition);
}

.header.scrolled .nav-link {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--accent);
}

.header.scrolled .nav-link:hover {
  color: var(--accent);
}

/* ── LANGUAGE SELECTOR */
.lang-item {
  position: relative;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.header.scrolled .lang-selector {
  color: #fff;
}

.lang-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .lang-selector:hover {
  background: var(--border);
}

.lang-icon,
.lang-chevron {
  width: 16px;
  height: 16px;
}

.lang-chevron {
  transition: transform var(--transition);
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 130px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--primary);
  transition: background var(--transition);
}

.lang-option:hover,
.lang-option.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
}

/* ── MOBILE NAV */
body.nav-open {
  overflow: hidden;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 1010;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.header.scrolled .nav-toggle span {
  background: #fff;
}

/* ── HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-accent {
  color: var(--accent);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-contact .contact-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ── STATS */
.stats-section {
  padding: 60px 0;
  background: var(--primary);
}

[data-theme="dark"] .stats-section {
  background: #0f172a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-card {
  padding: 40px 24px;
  text-align: center;
  background: rgba(15, 23, 42, 0.6);
  transition: background var(--transition);
}

.stat-card:hover {
  background: rgba(37, 99, 235, 0.12);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── ABOUT INTRO */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-content .section-badge {
  margin-bottom: 14px;
}

.about-intro-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-light);
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.tab-btn:hover:not(.active) {
  border-color: var(--secondary);
  color: var(--secondary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.about-intro-visual {
  position: relative;
}

.about-intro-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.visual-card {
  position: absolute;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}

.visual-card svg {
  width: 22px;
  height: 22px;
  color: var(--secondary);
}

.visual-card-top {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.visual-card-bottom {
  bottom: -20px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ── SERVICES OVERVIEW */
.services-overview {
  background: #f8fafc;
}

[data-theme="dark"] .services-overview {
  background: #0f172a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(56, 189, 248, 0.02));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--secondary);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--secondary);
  transition: color var(--transition);
}

.service-card:hover .service-card-icon svg {
  color: #fff;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

[data-theme="dark"] .service-card h3 {
  color: #f1f5f9;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.service-card-arrow {
  margin-top: auto;
}

.service-card-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: transform var(--transition);
}

.service-card:hover .service-card-arrow svg {
  transform: translateX(6px);
}

/* ── WHY US */
.why-us {
  background: var(--bg);
}

[data-theme="dark"] .why-us {
  background: var(--bg-dark);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-us-text .section-title {
  text-align: left;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 1rem;
}

.why-list li svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.mission-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.mission-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

[data-theme="dark"] .mission-badge {
  background: #0f172a;
}

.mission-badge:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-3px);
}

.mission-badge svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.mission-badge span {
  font-weight: 700;
  font-size: 0.88rem;
}

.why-us-text-block p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── TEAM PREVIEW */
.team-preview {
  background: #f8fafc;
}

[data-theme="dark"] .team-preview {
  background: #0f172a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-info {
  padding: 24px;
}

.team-card-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-card-info p {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-stats {
  display: flex;
  gap: 16px;
}

.team-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-stat .num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--secondary);
}

.team-stat .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

/* ── CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 64px;
  border-radius: var(--radius-xl);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner-left p {
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── FOOTER */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

[data-theme="dark"] .footer {
  background: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-nav h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contact h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ── PAGE HERO (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
}

.page-hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
}

.page-hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .section-badge {
  margin-bottom: 20px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  line-height: 1.8;
}

/* ── MANAGEMENT PAGE */
.mgmt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.feature-card:hover .feature-card-icon {
  background: var(--secondary);
}

.feature-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  transition: color var(--transition);
}

.feature-card:hover .feature-card-icon svg {
  color: #fff;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── FAQ */
.faq-section {
  background: #f8fafc;
}

[data-theme="dark"] .faq-section {
  background: #0f172a;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

/* ── MAINTENANCE TIMELINE */
.maintenance-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.maintenance-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.timeline-icon {
  width: 72px;
  height: 72px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
  z-index: 1;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.12);
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.timeline-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex: 1;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ── SERVICE DETAILS GRID */
.service-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-detail-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary);
}

.service-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-card ul li {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-detail-card ul li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ── RENTAL LISTINGS */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.listing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.listing-img {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.listing-img svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.4);
}

.listing-info {
  padding: 24px;
}

.listing-info h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.listing-meta {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.listing-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--secondary);
}

/* ── TEAM PAGE */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.team-full-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.team-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.team-full-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.team-full-card:hover .team-full-img img {
  transform: scale(1.04);
}

.team-full-info {
  padding: 28px;
}

.team-full-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.team-counters {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.team-counter .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--secondary);
  display: block;
}

.team-counter .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  display: block;
}

/* ── ABOUT PAGE */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-commitment {
  padding: 80px 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.commitment-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

[data-theme="dark"] .commitment-card {
  background: #0f172a;
}

.commitment-card:hover {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-3px);
}

.commitment-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .commitment-card h4 {
  color: #f1f5f9;
}

.commitment-card h4 svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.commitment-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── MILESTONES TIMELINE */
.milestones-section {
  background: var(--primary);
  padding: 100px 0;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.milestone-item {
  text-align: center;
  position: relative;
}

.milestone-item::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.milestone-item:last-child::after {
  display: none;
}

.milestone-year {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.15);
}

.milestone-event {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ── FORM / CTA SECTION */
.quote-cta {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  margin-top: 60px;
}

.quote-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.quote-cta p {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ── RESPONSIVE */
@media (max-width: 1024px) {

  .about-intro-grid,
  .why-us-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-grid,
  .team-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgmt-features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestone-item::after {
    display: none;
  }

  .about-intro-visual .visual-card-top {
    top: -10px;
    left: 0;
  }

  .about-intro-visual .visual-card-bottom {
    bottom: -10px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 64px 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: calc(var(--nav-h) + 24px) 24px 32px;
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.08s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.13s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.18s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.23s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.28s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.33s;
  }

  .nav-links.open li:nth-child(7) {
    transition-delay: 0.38s;
  }

  .nav-links li:not(.lang-item) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    min-height: 56px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #fff;
    background: rgba(37, 99, 235, 0.15);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--accent);
    background: rgba(56, 189, 248, 0.1);
    border-left: 3px solid var(--accent);
  }

  .header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
  }

  .header.scrolled .nav-link:hover {
    color: #fff;
  }

  /* Mobile language selector */
  .nav-links .lang-item {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links .lang-selector {
    padding: 16px;
    min-height: 52px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links .lang-selector:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-links .lang-selector.open .lang-dropdown {
    max-height: 120px;
  }

  .nav-links .lang-option {
    color: rgba(255, 255, 255, 0.75);
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .nav-links .lang-option:hover,
  .nav-links .lang-option.active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--accent);
  }

  .nav-toggle {
    display: flex;
  }

  .team-grid,
  .team-page-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-inner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .milestones-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner-right {
    justify-content: center;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }
}