/* ============================================
   FD DEVELOPMENTS LIMITED
   Premium Corporate Website
   Core Design System
   ============================================ */

:root {
  /* Brand Colors */
  --primary-red: #C1121F;
  --primary-red-dark: #9C0F1A;
  --primary-red-light: #E5383B;
  --black: #111111;
  --black-light: #1A1A1A;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --accent: #EAEAEA;
  --dark-section: #161616;
  --dark-card: #1E1E1E;

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-button: 'Montserrat', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 8px 30px rgba(17, 17, 17, 0.12);
  --shadow-lg: 0 20px 60px rgba(17, 17, 17, 0.18);
  --shadow-red: 0 10px 30px rgba(193, 18, 31, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container-max: 1320px;
  --header-height: 88px;
}

/* Light/Dark Mode */
[data-theme="light"] {
  --bg-primary: var(--white);
  --bg-secondary: var(--light-gray);
  --bg-tertiary: var(--accent);
  --text-primary: var(--black);
  --text-secondary: #444444;
  --text-muted: #777777;
  --card-bg: var(--white);
  --border-color: #E8E8E8;
  --hero-overlay: rgba(0, 0, 0, 0.55);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(17, 17, 17, 0.1);
}

[data-theme="dark"] {
  --bg-primary: #0E0E0E;
  --bg-secondary: #161616;
  --bg-tertiary: #1E1E1E;
  --text-primary: var(--white);
  --text-secondary: #B8B8B8;
  --text-muted: #888888;
  --card-bg: #1A1A1A;
  --border-color: #2A2A2A;
  --hero-overlay: rgba(0, 0, 0, 0.65);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-red);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

::selection {
  background: var(--primary-red);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-dark);
}

/* ============================================
   UTILITIES & LAYOUT
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-dark {
  background-color: var(--dark-section);
  color: var(--white);
}

.section-sm {
  padding: var(--space-lg) 0;
}

.text-red {
  color: var(--primary-red);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.section-header {
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--primary-red);
  display: inline-block;
}

.section-header.center .section-eyebrow::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--primary-red);
  display: inline-block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
}

.section-dark .section-subtitle,
.section-dark .text-secondary {
  color: #B8B8B8;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-button);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-dark {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

.btn-sm {
  padding: 12px 26px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.btn .btn-icon {
  transition: transform var(--transition-medium);
}

.btn:hover .btn-icon {
  transform: translateX(6px);
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 24px;
  animation: pulse-logo 2s ease-in-out infinite;
}

.loader-logo span {
  color: var(--primary-red);
}

.loader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-red);
  animation: loader-progress 2s ease-in-out infinite;
}

.loader-text {
  margin-top: 24px;
  font-family: var(--font-button);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes pulse-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}

@keyframes loader-progress {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  transition: opacity 0.3s ease;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(193, 18, 31, 0.4);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.cursor-ring.active {
  width: 65px;
  height: 65px;
  border-color: var(--primary-red);
}

.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  background: rgba(193, 18, 31, 0.15);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring {
    display: none;
  }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition-medium);
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  font-weight: 400;
}

.logo-text strong span {
  color: var(--primary-red);
}

.logo-text small {
  font-family: var(--font-button);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 18px;
  font-family: var(--font-button);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--primary-red);
  transition: transform var(--transition-medium);
  transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-action-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-action-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-action-btn svg {
  width: 18px;
  height: 18px;
}

.nav-cta {
  padding: 12px 26px;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
}

/* Mega Menu */
.has-megamenu {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 120px 0 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all var(--transition-medium);
  border-bottom: 3px solid var(--primary-red);
  z-index: 999;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
}

.mega-menu-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.mega-menu-column h4 {
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.mega-menu-column ul li {
  margin-bottom: 12px;
}

.mega-menu-column ul li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mega-menu-column ul li a:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

.mega-menu-column ul li a svg {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}

.mega-menu-featured {
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.2), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.mega-menu-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.3), transparent 70%);
  border-radius: 50%;
}

.mega-menu-featured h3 {
  color: var(--white);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mega-menu-featured p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-links {
  text-align: center;
}

.mobile-menu-links li {
  margin-bottom: 8px;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  padding: 8px 24px;
  display: inline-block;
  position: relative;
  transition: color var(--transition-fast);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--primary-red);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.mobile-menu-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.mobile-menu-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.mobile-menu-social a:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.mobile-menu-social svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: min(680px, 90%);
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.search-close:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: rotate(90deg);
}

.search-form {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
}

.search-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-form button {
  color: var(--primary-red);
  display: flex;
  align-items: center;
}

.search-form button svg {
  width: 32px;
  height: 32px;
  transition: transform var(--transition-fast);
}

.search-form button:hover svg {
  transform: scale(1.15);
}

.search-hint {
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: transform 6s ease-out;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--hero-overlay) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: min(850px, 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-red-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-eyebrow::before {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--primary-red);
  display: inline-block;
}

.hero-title {
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 0.95;
}

.hero-title .typed-text {
  color: var(--primary-red-light);
  display: inline-block;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line span {
  display: block;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-title-line:nth-child(1) span {
  animation-delay: 0.6s;
}

.hero-title-line:nth-child(2) span {
  animation-delay: 0.8s;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1s;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.4s;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  font-weight: 400;
  display: block;
  line-height: 1;
}

.hero-stat strong span {
  color: var(--primary-red-light);
}

.hero-stat small {
  font-family: var(--font-button);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-button);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: var(--white);
}

.scroll-mouse {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-mouse::after {
  content: '';
  width: 4px;
  height: 10px;
  background: var(--primary-red);
  border-radius: 4px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Slider controls */
.hero-slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
}

.hero-slider-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: scale(1.1);
}

.hero-slider-btn svg {
  width: 20px;
  height: 20px;
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}

.floating-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-red);
  top: -100px;
  right: -100px;
}

.floating-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-red-light);
  bottom: -50px;
  left: 10%;
  animation-delay: -4s;
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */

.page-header {
  position: relative;
  padding: 200px 0 100px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.7));
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-header h1 span {
  color: var(--primary-red-light);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-button);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary-red-light);
}

.breadcrumb .separator {
  color: var(--primary-red);
}

.breadcrumb .current {
  color: var(--white);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-wrap:hover .about-image-main img {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary-red);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--primary-red);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  text-align: center;
}

.about-image-badge strong {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  display: block;
  line-height: 1;
  font-weight: 400;
}

.about-image-badge span {
  font-family: var(--font-button);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(193, 18, 31, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FEATURED PROJECTS
   ============================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  background: var(--card-bg);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-category {
  font-family: var(--font-button);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-red-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.project-card-overlay h3 {
  color: var(--white);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 300;
}

.project-card-info {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-card-info h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.project-card-info span {
  font-family: var(--font-button);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 600;
}

.project-card-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.project-card:hover .project-card-arrow {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  transform: rotate(45deg);
}

.project-card-arrow svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(193, 18, 31, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: all var(--transition-medium);
}

.why-card:hover .why-card-icon {
  background: var(--primary-red);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-red);
}

.why-card-icon svg {
  width: 36px;
  height: 36px;
}

.why-card h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.08), transparent 70%);
  border-radius: 50%;
  transition: transform var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(193, 18, 31, 0.3);
}

.service-card:hover::after {
  transform: scale(1.5);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-red);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-red);
  transition: all var(--transition-medium);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card-icon {
  transform: rotate(-6deg) scale(1.1);
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red);
  position: relative;
  z-index: 1;
  transition: gap var(--transition-fast);
}

.service-card-link:hover {
  gap: 14px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PROCESS
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), rgba(193, 18, 31, 0.1));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: var(--bg-primary);
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-red);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
}

.process-step:hover .process-step-number {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

.process-step h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================
   STATISTICS
   ============================================ */

.stats-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.9);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.stat-item:hover {
  background: rgba(193, 18, 31, 0.1);
  border-color: rgba(193, 18, 31, 0.4);
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(193, 18, 31, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red-light);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
}

.stat-number span {
  color: var(--primary-red-light);
}

.stat-label {
  font-family: var(--font-button);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  text-align: center;
  padding: 20px;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.testimonial-quote-icon svg {
  width: 24px;
  height: 24px;
}

.testimonial-text {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-info strong {
  display: block;
  font-family: var(--font-button);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--primary-red);
  width: 30px;
  border-radius: 5px;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--card-bg);
  transition: all var(--transition-fast);
  z-index: 2;
}

.testimonial-nav:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.testimonial-nav.prev {
  left: -80px;
}

.testimonial-nav.next {
  right: -80px;
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   PARTNERS
   ============================================ */

.partners-section {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-logo span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light), var(--primary-red));
  background-size: 200% 100%;
  animation: gradient-slide 4s linear infinite;
}

@keyframes gradient-slide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.footer-top {
  padding: var(--space-xl) 0 var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
  margin: 20px 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-red-light);
  transform: translateX(5px);
}

.footer-links a svg {
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(193, 18, 31, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red-light);
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 6px;
  transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--primary-red);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  background: var(--primary-red);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-family: var(--font-button);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--primary-red-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-red-light);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-red-dark);
  transform: translateY(-3px);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-medium);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  color: var(--white);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */

.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: all var(--transition-medium);
}

.theme-toggle .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.theme-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item.active {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-family: var(--font-button);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-red);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-medium);
}

.faq-item.active .faq-icon {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: rgba(193, 18, 31, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
  transition: all var(--transition-medium);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--primary-red);
  color: var(--white);
  transform: rotate(-6deg);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-item h4 {
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.contact-info-item a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-info-item a:hover {
  color: var(--primary-red);
}

.contact-hours {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.contact-hours h4 {
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-color);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:last-child {
  color: var(--primary-red);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-label span {
  color: var(--primary-red);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.1);
  background: var(--bg-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #1B8A4A;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-success.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-error {
  display: none;
  background: rgba(193, 18, 31, 0.1);
  border: 1px solid rgba(193, 18, 31, 0.3);
  color: var(--primary-red);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-error.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 400px;
  background: var(--bg-secondary);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  text-align: center;
  padding: 40px;
}

.map-placeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-red);
  animation: map-pin 2s ease-in-out infinite;
}

@keyframes map-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-placeholder-icon svg {
  width: 36px;
  height: 36px;
}

.map-placeholder h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.map-placeholder p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 300px;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--card-bg);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.8), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gallery-item-overlay span {
  font-family: var(--font-button);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red-light);
  font-weight: 600;
}

.gallery-item-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-item-zoom svg {
  width: 18px;
  height: 18px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  font-family: var(--font-button);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  z-index: 2;
}

.lightbox-nav:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-button);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ============================================
   PROJECT MODAL
   ============================================ */

.project-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.project-modal.open {
  opacity: 1;
  visibility: visible;
}

.project-modal-content {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.95);
  transition: all var(--transition-medium);
}

.project-modal.open .project-modal-content {
  transform: translateY(0) scale(1);
}

.project-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-red);
}

.project-modal-close:hover {
  background: var(--primary-red-dark);
  transform: rotate(90deg);
}

.project-modal-close svg {
  width: 20px;
  height: 20px;
}

.project-modal-gallery {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.project-modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all var(--transition-fast);
  z-index: 2;
}

.project-modal-gallery-nav:hover {
  background: var(--primary-red);
  color: var(--white);
}

.project-modal-gallery-nav.prev {
  left: 16px;
}

.project-modal-gallery-nav.next {
  right: 16px;
}

.project-modal-gallery-nav svg {
  width: 20px;
  height: 20px;
}

.project-modal-body {
  padding: 40px;
}

.project-modal-body h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-modal-category {
  font-family: var(--font-button);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.project-modal-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 24px;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.project-spec {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.project-spec strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-red);
  font-weight: 400;
}

.project-spec span {
  font-family: var(--font-button);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-red), rgba(193, 18, 31, 0.1));
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--primary-red);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-red);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.timeline-content h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ============================================
   LEADERSHIP
   ============================================ */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.leader-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-social {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all var(--transition-medium);
}

.leader-card:hover .leader-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.leader-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all var(--transition-fast);
}

.leader-social a:hover {
  background: var(--primary-red);
  color: var(--white);
}

.leader-social svg {
  width: 16px;
  height: 16px;
}

.leader-info {
  padding: 24px;
  text-align: center;
}

.leader-info h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.leader-info span {
  font-family: var(--font-button);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 600;
}

.leader-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  margin-top: 12px;
}

/* ============================================
   VALUES
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: rgba(193, 18, 31, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: all var(--transition-medium);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-card-icon {
  background: var(--primary-red);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-red);
}

.value-card-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ============================================
   MILESTONES
   ============================================ */

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.milestone-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-medium);
}

.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red);
}

.milestone-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.milestone-card h4 {
  font-family: var(--font-button);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.milestone-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 300;
}

/* ============================================
   PAGE TRANSITION
   ============================================ */

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--primary-red);
  z-index: 5000;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition.active {
  transform: translateY(0);
}

.page-transition-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 4px;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.page-transition.active .page-transition-logo {
  opacity: 1;
}

/* ============================================
   GLASSMORPHISM
   ============================================ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-medium);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

/* ============================================
   NEWSLETTER POPUP
   ============================================ */

.newsletter-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  z-index: 998;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.newsletter-popup.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.newsletter-popup h4 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.newsletter-popup p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.newsletter-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.newsletter-popup-close:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 20px;
}

:focus-visible {
  outline: 3px solid var(--primary-red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
