/* ========================================
   Cartli - Modern Website Styles
   ======================================== */

/* CSS Variables */
:root {
  --primary: #3b6b96;
  --primary-dark: #2d5577;
  --primary-light: #4a7daa;
  --yellow: #f5b731;
  --yellow-light: #fcd462;
  --yellow-dark: #e5a520;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-50: #f0f4f8;
  --gray-100: #e2e8f0;
  --gray-200: #d1d9e6;
  --gray-300: #b8c4d4;
  --gray-400: #94a3b8;
  --gray-500: #728197;
  --gray-600: #5a6a7e;
  --gray-700: #3d4f63;
  --gray-800: #2a3a4e;
  --gray-900: #1a2535;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(45, 74, 122, 0.06);
  --shadow: 0 8px 30px rgba(45, 74, 122, 0.08);
  --shadow-lg: 0 16px 50px rgba(45, 74, 122, 0.12);
  --shadow-xl: 0 24px 60px rgba(45, 74, 122, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  padding: 5px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer .logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 60%;
  left: 20%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  width: 60%;
  left: 20%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 74, 122, 0.3);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--primary-dark);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 183, 49, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  padding-top: 80px;
}

.hero-yellow {
  position: relative;
  background: linear-gradient(160deg, #f9c846 0%, var(--yellow) 40%, #eda918 100%);
  padding: 80px 0 140px;
  overflow: hidden;
}

.hero-yellow::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-yellow::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--white);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--primary-dark);
  opacity: 0.75;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Hero Illustration */
.hero-image-wrapper {
  width: 100%;
  max-width: 440px;
}

.hero-image-placeholder {
  position: relative;
}

.hero-illustration {
  position: relative;
}

.hero-illust-screen {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-illust-bar {
  height: 12px;
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.hero-illust-bar::before,
.hero-illust-bar::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-illust-bar::before {
  background: var(--yellow);
  box-shadow: 20px 0 0 var(--gray-200), 40px 0 0 var(--gray-200);
}

.hero-illust-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-illust-line {
  height: 10px;
  background: var(--gray-100);
  border-radius: 5px;
  width: 100%;
}

.hero-illust-line.short {
  width: 60%;
}

.hero-illust-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.hero-illust-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 6px 6px 0 0;
  min-height: 20px;
  transition: var(--transition-slow);
}

.hero-illust-chart-bar:nth-child(4) {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-dark));
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  animation: float 3s ease-in-out infinite;
}

.hero-float-card svg {
  color: var(--primary);
}

.hero-float-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20px;
  left: -20px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Wave bottom */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========================================
   Stats Section
   ======================================== */

.stats {
  padding: 90px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ========================================
   Services Section
   ======================================== */

.services {
  padding: 110px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ========================================
   Brands Section
   ======================================== */

.brands {
  padding: 100px 0;
  background: var(--off-white);
}

.brands-heading {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.brands-heading span {
  color: var(--yellow-dark);
  font-weight: 700;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}

/* Remove right border on last column */
.brand-card:nth-child(4n) {
  border-right: none;
}

/* Remove bottom border on last row */
.brand-card:nth-last-child(-n+4) {
  border-bottom: none;
}

.brand-card:hover {
  background: rgba(245, 183, 49, 0.04);
}

.brand-logo {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-card:hover .brand-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
  padding: 110px 0;
  background: var(--white);
}

.cta-content {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 90px 48px;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 183, 49, 0.08);
}

.cta-content::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-content .btn {
  position: relative;
  z-index: 1;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--primary-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 22px;
}

.footer-links ul li,
.footer-brands ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-brands li,
.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Page Header (About / Contact)
   ======================================== */

.page-header {
  padding: 170px 0 90px;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 183, 49, 0.06);
}

.page-header .section-label {
  color: var(--yellow);
}

.page-header .section-label::before,
.page-header .section-label::after {
  background: rgba(245, 183, 49, 0.4);
}

.page-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========================================
   About Page
   ======================================== */

/* Mission Section */
.about-mission {
  padding: 90px 0;
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mission-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.mission-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* About Content */
.about-content {
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  line-height: 1.15;
}

.about-text .lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-stat-card:hover {
  transform: translateY(-4px);
}

.about-stat-card.yellow {
  background: linear-gradient(160deg, #f9c846, var(--yellow-dark));
}

.about-stat-card.blue {
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
}

.about-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Why Choose Us */
.why-us {
  padding: 110px 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 183, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-us-list strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 4px;
}

.why-us-list p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.why-us-card {
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-us-card-top {
  padding: 56px 44px;
  text-align: center;
}

.why-us-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 183, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--yellow);
}

.why-us-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-us-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* What We Offer */
.what-we-offer {
  padding: 110px 0;
  background: var(--off-white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offer-card {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.offer-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--yellow-dark);
  background: rgba(245, 183, 49, 0.12);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ========================================
   Contact Page
   ======================================== */

/* Quick Contact Cards */
.contact-cards-section {
  padding: 0 0 80px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-quick-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.contact-quick-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
}

.contact-quick-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-quick-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-quick-label {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Contact Form Layout */
.contact-section {
  padding: 20px 0 110px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-form-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.contact-form-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-form-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow-dark);
}

.contact-trust-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Location Section */
.location-section {
  padding: 0 0 110px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.location-card-content {
  padding: 48px 44px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 183, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.location-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.location-address {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.location-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.location-hours {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.location-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.location-hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.location-day {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.location-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.location-hours-item.closed .location-time {
  color: var(--gray-400);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
  color: var(--gray-800);
  background: var(--off-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 74, 122, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}

.success-icon {
  color: #22c55e;
  margin-bottom: 18px;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray-500);
}

/* ========================================
   Legal Pages (Terms, Privacy)
   ======================================== */

.legal-content {
  padding: 80px 0 110px;
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 10px;
}

.legal-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.legal-updated p {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-float-1 {
    right: 0;
  }

  .hero-float-2 {
    left: 0;
  }

}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 18px;
    width: 100%;
  }

  .hero-yellow {
    padding: 60px 0 120px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-visual {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-card:nth-child(4n) {
    border-right: 1px solid var(--gray-200);
  }

  .brand-card:nth-child(3n) {
    border-right: none;
  }

  .brand-card:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--gray-200);
  }

  .brand-card:nth-last-child(-n+3) {
    border-bottom: none;
  }

  .brands-heading {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-content {
    padding: 56px 28px;
  }

  .cta-content h2 {
    font-size: 1.85rem;
  }

  .page-header {
    padding: 130px 0 70px;
  }

  .page-header h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 0.9rem;
  }
}
