/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --red-primary: #be0000;
  --red-hover: #e2180a;
  --red-dark: #8a0000;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #6b6b6b;
  --border-color: #222222;
  --border-accent: #2a2a2a;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --section-padding: 120px;
  --container-max: 1280px;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--red-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px !important;
  font-size: 13px !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--red-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-text .section-label {
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--red-primary);
}

.hero-text p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--red-primary);
  line-height: 1;
}

.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--red-primary);
  opacity: 0.3;
}

.hero-image-tag {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--red-primary);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 2px;
}

/* Red line decoration */
.red-line {
  width: 60px;
  height: 3px;
  background: var(--red-primary);
  margin-bottom: 24px;
}

/* ============================================
   MARQUEE / TICKER
   ============================================ */
.ticker-bar {
  background: var(--red-primary);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 3px;
  padding: 0 40px;
  color: #fff;
  flex-shrink: 0;
}

.ticker-track span::before {
  content: '\2726';
  margin-right: 40px;
  opacity: 0.6;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.about-img {
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img:first-child {
  grid-row: 1 / 3;
  border: 1px solid var(--border-color);
}

.about-img:nth-child(2) {
  border: 1px solid var(--border-color);
}

.about-img:nth-child(3) {
  border: 1px solid var(--border-color);
}

.about-text .section-desc {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(190, 0, 0, 0.1);
  border: 1px solid rgba(190, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--red-primary);
}

.about-feature div h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature div p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-header .section-desc {
  max-width: 420px;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-accent);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.services-slider-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}

.services-slider {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.services-slider:active {
  cursor: grabbing;
}

.service-card {
  min-width: 340px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: border-color 0.4s ease;
  group: true;
}

.service-card:hover {
  border-color: rgba(190, 0, 0, 0.4);
}

.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.service-card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(10, 10, 10, 0.7);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-body h3 {
  color: var(--red-primary);
}

.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-primary);
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
  gap: 12px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

/* Services counter */
.slider-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-progress-bar {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  position: relative;
  max-width: 300px;
}

.slider-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--red-primary);
  width: 25%;
  transition: width 0.5s var(--transition-smooth);
}

.slider-count {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.slider-count span {
  color: #fff;
}

/* ============================================
   WHY CHOOSE US / PROCESS
   ============================================ */
.process {
  padding: var(--section-padding) 0;
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .section-desc {
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-dark), var(--red-primary));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--red-primary);
  border: 2px solid rgba(190, 0, 0, 0.3);
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.process-step:hover .process-step-num {
  background: var(--red-primary);
  color: #fff;
  border-color: var(--red-primary);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, #c41010 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--red-primary);
  font-weight: 700;
}

.cta-banner .btn-primary:hover {
  background: var(--bg-primary);
  color: #fff;
}

/* ============================================
   FAQS
   ============================================ */
.faqs {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.faqs .container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.faqs-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.faqs-sidebar .section-desc {
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--red-primary);
}

.faq-icon {
  min-width: 28px;
  height: 28px;
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  position: relative;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(190, 0, 0, 0.1);
  border: 1px solid rgba(190, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--red-primary);
}

.contact-item div h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item div p,
.contact-item div a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-item div a:hover {
  color: var(--red-primary);
}

.contact-hours {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
}

.contact-hours h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--text-secondary);
}

.hours-row span:last-child {
  font-weight: 500;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 48px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}

/* Map area */
.contact-map {
  margin-top: 40px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 220px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.8) brightness(0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--red-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--red-primary);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   GSAP REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ============================================
   RESPONSIVE: TABLET LANDSCAPE (1024)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-content .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .hero-visual {
    display: none;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 360px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .faqs .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faqs-sidebar {
    position: static;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .service-card {
    min-width: 300px;
  }
}

/* ============================================
   RESPONSIVE: TABLET PORTRAIT (768)
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-text h1 {
    font-size: clamp(40px, 8vw, 56px);
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat strong {
    font-size: 36px;
  }

  .about-images {
    height: 280px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-form-wrapper {
    padding: 32px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-width: 280px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE: MOBILE (480)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-padding: 64px;
    --nav-height: 68px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .about-images {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-img:first-child {
    grid-row: auto;
  }

  .about-img {
    height: 200px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .service-card {
    min-width: calc(100vw - 48px);
  }

  .section-title {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (375)
   ============================================ */
@media (max-width: 375px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 13px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }
}