/* ═══════════════════════════════════════════════════════
   HIMME GRUP — Premium Corporate Design System
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* ── DESIGN TOKENS ── */
:root {
  --navy-900: #020e1f;
  --navy-800: #041c38;
  --navy-700: #072b54;
  --navy-600: #0a3568;
  --navy-500: #0d4a8a;
  --blue-600: #0047d4;
  --blue-500: #0055ff;
  --blue-400: #3380ff;
  --blue-300: #66aaff;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-hero: 0 25px 80px rgba(0,0,0,0.35);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1280px;
}

/* ── UTILITIES ── */
.section-label {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-500);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title--center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 85, 255, 0.35);
}
.btn--primary:hover {
  background: var(--blue-600);
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.45);
  transform: translateY(-1px);
}
.btn--outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white);
  color: var(--blue-500);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════ */
.topbar {
  background: var(--navy-800);
  color: var(--gray-400);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__left { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar__right { display: flex; gap: 4px; }
.topbar__lang {
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 12px;
  color: var(--gray-400);
}
.topbar__lang--active {
  background: var(--blue-500);
  color: var(--white);
}
.topbar__lang:hover:not(.topbar__lang--active) {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow 0.3s;
}
.header--scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__brand { display: flex; align-items: center; }
.header__logo { height: 44px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 8px; }
.header__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.header__link:hover { color: var(--blue-500); background: var(--blue-50); }
.header__link svg { opacity: 0.5; }
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 32px;
  transition: var(--transition);
}
.header__cta:hover { background: linear-gradient(135deg, var(--navy-600), var(--navy-700)); }
.header__burger { display: none; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 560px;
  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;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(4, 28, 56, 0.92) 0%,
    rgba(7, 43, 84, 0.80) 40%,
    rgba(10, 53, 104, 0.55) 70%,
    rgba(13, 74, 138, 0.30) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero__content { max-width: 600px; }
.hero__badge {
  display: inline-block;
  background: rgba(0, 85, 255, 0.18);
  border: 1px solid rgba(0, 85, 255, 0.4);
  color: var(--blue-300);
  padding: 7px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero__subtitle {
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   MONTAGE
   ═══════════════════════════════════════════════════════ */
.montage {
  background: var(--gray-50);
  margin-top: -40px;
  position: relative;
  z-index: 5;
  padding: 0 40px 40px;
}
.montage__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.montage__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════
   FEATURES BAR
   ═══════════════════════════════════════════════════════ */
.features {
  background: var(--white);
  padding: 0 40px;
  border-bottom: 1px solid var(--gray-200);
}
.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid var(--gray-100);
}
.feature:first-child { padding-left: 0; }
.feature:last-child { border-right: none; padding-right: 0; }
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature:hover .feature__icon {
  background: var(--blue-500);
  color: var(--white);
  transform: scale(1.05);
}
.feature__title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.feature__sub {
  font-size: 12px;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about {
  padding: 100px 40px;
  background: var(--gray-50);
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
}
.stat {
  text-align: center;
}
.stat__number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--blue-500);
  line-height: 1;
  letter-spacing: -1px;
}
.stat__plus { font-size: 28px; }
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 4px;
}
.about__visual { position: relative; }
.about__image-wrapper { position: relative; }
.about__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__badge-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--gray-100);
}
.about__badge-number {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-500);
  letter-spacing: 2px;
}
.about__badge-text {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  padding: 100px 40px;
  background: var(--white);
}
.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services__header { max-width: 600px; margin: 0 auto 50px; text-align: center; }
.services__desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,85,255,0.08) 0%, transparent 60%);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.service-card:hover::before {
  background: radial-gradient(circle, rgba(0,85,255,0.15) 0%, transparent 60%);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 85, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-300);
  margin-bottom: 24px;
  position: relative;
}
.service-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.service-card__text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-300);
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
.service-card__link:hover { color: var(--white); gap: 10px; }

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.cta {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.cta__text {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-900);
  color: var(--gray-400);
  padding: 70px 40px 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer__about {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__socials { display: flex; gap: 8px; }
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer__social:hover { background: var(--blue-500); color: var(--white); }
.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer__link {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 5px 0;
}
.footer__link:hover { color: var(--white); padding-left: 4px; }
.footer__contact {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature { border-right: none; padding: 16px 0; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .header__inner { padding: 0 20px; height: 64px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .header__burger span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
  }
  .hero { min-height: 480px; }
  .hero__inner { padding: 60px 20px; }
  .hero__title { font-size: 32px; }
  .montage { padding: 0 20px 20px; }
  .montage__img { height: 150px; }
  .features { padding: 0 20px; }
  .features__inner { grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px 0; }
  .about { padding: 60px 20px; }
  .about__stats { gap: 20px; }
  .stat__number { font-size: 32px; }
  .services { padding: 60px 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .cta { padding: 60px 20px; }
  .footer { padding: 50px 20px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 240px; padding: 60px 20px; }
  .page-hero__title { font-size: 28px; }
  .content-section { padding: 50px 20px; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Mobile Nav Overlay */
  .header__nav--open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 20px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
  }
  .header__nav--open .header__link {
    padding: 14px 16px;
    font-size: 17px;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }
  /* Burger animation */
  .header__burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .header__burger--active span:nth-child(2) { opacity: 0; }
  .header__burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ═══════════════════════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(0,85,255,0.06);
  border-radius: 50%;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 700px; }
.page-hero__title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-hero__subtitle {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════════════════════ */
.content-section {
  padding: 80px 40px;
  background: var(--gray-50);
}
.content-section--alt { background: var(--white); }
.content__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.content__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════
   INFO CARDS (3-grid)
   ═══════════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.info-card__icon {
  color: var(--blue-500);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.info-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.info-card__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   DETAIL ITEMS (engine/brake)
   ═══════════════════════════════════════════════════════ */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.detail-item:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-md);
}
.detail-item__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  color: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.detail-item__text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   BRAND GRID
   ═══════════════════════════════════════════════════════ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.brand-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.brand-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--blue-500);
}
.contact-info__item div { color: var(--gray-700); }
.contact-info__item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-info__item p { font-size: 14px; color: var(--gray-500); margin: 0; }
.contact-info__item a { color: var(--blue-500); }
.contact-info__item a:hover { text-decoration: underline; }
.contact-map { margin-top: 20px; }
.contact-form-wrapper {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-form__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(0,85,255,0.15);
}
.form-group select option {
  background: var(--navy-800);
  color: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn--full { width: 100%; justify-content: center; }
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
}
.form-status--success {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.form-status--error {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}

/* ═══════════════════════════════════════════════════════
   RTL SUPPORT (Arabic)
   ═══════════════════════════════════════════════════════ */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .header__inner { flex-direction: row-reverse; }
[dir="rtl"] .header__nav { flex-direction: row-reverse; }
[dir="rtl"] .hero__actions { justify-content: flex-end; }
[dir="rtl"] .feature { flex-direction: row-reverse; }
[dir="rtl"] .about__inner { direction: rtl; }
[dir="rtl"] .about__badge-card { left: auto; right: -20px; }
[dir="rtl"] .detail-item { flex-direction: row-reverse; }
[dir="rtl"] .contact-info__item { flex-direction: row-reverse; }
[dir="rtl"] .footer__link:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .topbar__inner { flex-direction: row-reverse; }
[dir="rtl"] .topbar__left { flex-direction: row-reverse; }
[dir="rtl"] .btn svg { transform: scaleX(-1); }
[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(-3px); }
[dir="rtl"] .header__cta { clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%); padding-left: 32px; padding-right: 28px; }

/* ═══════════════════════════════════════════════════════
   TABLET RESPONSIVE (1024px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
