/* ==========================================
   SHATAKSHI FREIGHT SOLUTIONS – CLEAN THEME
   ========================================== */

/* ---------- TOKENS ---------- */

:root {
  /* Colors */
  --c-white: #ffffff;
  --c-black: #000000;

  --c-bg: #f5f7fb;
  --c-surface: #ffffff;
  --c-surface-alt: #f1f5f9;

  --c-border-soft: #e2e8f0;
  --c-border-strong: #cbd5f5;

  --c-text-main: #0f172a;
  --c-text-subtle: #64748b;
  --c-text-muted: #94a3b8;

  --c-primary: #0f766e;
  --c-primary-soft: #14b8a6;
  --c-primary-dark: #115e59;

  --c-accent: #f97316;

  --c-hero-top: #0b1220;
  --c-hero-bottom: #0f766e;

  --c-contact-top: #020617;
  --c-contact-bottom: #0f172a;

  /* Typography */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.4rem;
  --fs-2xl: 1.8rem;
  --fs-3xl: 2.2rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-normal: 1.6;

  /* Radius */
  --r-sm: 0.375rem;
  --r-md: 0.75rem;
  --r-lg: 1.25rem;
  --r-pill: 9999px;

  /* Shadows */
  --sh-soft: 0 4px 16px rgba(15, 23, 42, 0.06);
  --sh-elevated: 0 14px 40px rgba(15, 23, 42, 0.12);

  /* Motion */
  --t-fast: 120ms;
  --t-normal: 200ms;
  --t-slow: 320ms;
  --e-standard: cubic-bezier(0.33, 0.66, 0.2, 1);
}

/* ---------- RESET ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--c-text-main);
  background: var(--c-bg);
}

section {
  scroll-margin-top: 90px;
}

/* ------------------------------------------
   NAVBAR
------------------------------------------ */

.navbar {
  background: #0b1120;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding-block: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--fs-lg);
}

.navbar-brand i {
  color: var(--c-primary-soft);
  font-size: 1.4rem;
}

.nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  padding-inline: 0.9rem !important;
  position: relative;
  color: #e2e8f0 !important;
}

.nav-link:hover {
  color: var(--c-white) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-primary-soft), var(--c-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-normal) var(--e-standard);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

/* ------------------------------------------
   HERO
------------------------------------------ */

.hero {
  background: linear-gradient(135deg, var(--c-hero-top), var(--c-hero-bottom));
  color: var(--c-white);
  padding: 4.5rem 0 4rem;
}

.hero .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  font-weight: var(--fw-bold);
  margin-bottom: 0.85rem;
}

.hero p {
  font-size: 1.02rem;
  max-width: 520px;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 1.6rem;
}

@media (max-width: 992px) {
  .hero .container-lg {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------
   BUTTONS
------------------------------------------ */

.btn-primary-custom,
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition:
    background var(--t-normal) var(--e-standard),
    color var(--t-normal) var(--e-standard),
    box-shadow var(--t-normal) var(--e-standard),
    transform var(--t-normal) var(--e-standard),
    border-color var(--t-normal) var(--e-standard);
}

.btn-primary-custom {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--sh-soft);
  margin-right: 0.75rem;
}

.btn-primary-custom:hover {
  background: var(--c-primary-dark);
  box-shadow: var(--sh-elevated);
  transform: translateY(-1px);
}

.btn-primary-custom:active {
  transform: translateY(0);
  box-shadow: var(--sh-soft);
}

.btn-outline-custom {
  background: transparent;
  border-color: rgba(226, 232, 240, 0.7);
  color: #e2e8f0;
}

.btn-outline-custom:hover {
  background: rgba(15, 23, 42, 0.35);
  border-color: #e2e8f0;
  transform: translateY(-1px);
}

/* ------------------------------------------
   STATS
------------------------------------------ */

.stats {
  background: #0f172a;
  color: var(--c-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(30, 64, 175, 0.45);
}

.stat-item {
  text-align: center;
  margin-block: 1rem;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: var(--fw-bold);
  color: var(--c-primary-soft);
}

.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.85);
}

/* ------------------------------------------
   GENERIC SECTIONS
------------------------------------------ */

.services,
.about,
.why-choose,
.contact {
  padding: 4rem 0;
}

.services,
.about,
.why-choose {
  background: var(--c-surface);
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  text-align: center;
  margin-bottom: 2.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-main);
}

.section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
}

/* ------------------------------------------
   SERVICES
------------------------------------------ */

.service-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--sh-soft);
  text-align: left;
  transition:
    transform var(--t-normal) var(--e-standard),
    box-shadow var(--t-normal) var(--e-standard),
    border-color var(--t-normal) var(--e-standard);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: var(--sh-elevated);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: #ecfeff;
  color: var(--c-primary);
  font-size: 1.2rem;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-text-subtle);
}

/* ------------------------------------------
   ABOUT
------------------------------------------ */

.about {
  background: var(--c-surface-alt);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  align-items: center;
}

.about-text {
  flex: 1 1 320px;
}

.about-text h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: 0.9rem;
}

.about-text p {
  color: var(--c-text-subtle);
  margin-bottom: 0.8rem;
  font-size: 0.96rem;
}

.about-highlight {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: var(--r-md);
  background: #f8fafc;
  border: 1px dashed var(--c-border-soft);
}

.about-highlight strong {
  display: block;
  margin-bottom: 0.2rem;
}

.about-highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-text-subtle);
}

.about-image {
  flex: 0 0 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image i {
  font-size: 4.6rem;
  color: var(--c-primary);
}

/* ------------------------------------------
   WHY CHOOSE US
------------------------------------------ */

.why-choose {
  background: var(--c-surface);
}

.feature-box {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0.95rem;
  border-radius: var(--r-md);
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border-soft);
  margin-bottom: 1rem;
}

.feature-icon {
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
}

.feature-box h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
}

.feature-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-text-subtle);
}

/* ------------------------------------------
   CONTACT
------------------------------------------ */

.contact {
  background: radial-gradient(circle at top left, #020617, #020617 45%, #0f172a);
  color: var(--c-white);
}

.contact .section-title {
  color: #f9fafb;
}

.contact-lead {
  text-align: center;
  margin-bottom: 1.4rem;
  color: rgba(226, 232, 240, 0.96);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.info-box {
  flex: 1 1 220px;
  max-width: 260px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.info-box i {
  font-size: 1.25rem;
  color: var(--c-primary-soft);
  margin-bottom: 0.35rem;
}

.info-box h4 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.95);
}

.contact-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--sh-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.65rem 0.8rem;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.95);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-primary-soft);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.5);
}

/* OFFICE DETAILS – new HTML layout */

.office-details {
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.94);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.96);
}

.office-details h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 0.9rem;
}

.office-details h5 {
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
}

.office-details p {
  margin-bottom: 0.2rem;
}

/* ------------------------------------------
   FOOTER
------------------------------------------ */

footer {
  background: #020617;
  color: rgba(148, 163, 184, 0.95);
  padding: 1.4rem 0 1.8rem;
  font-size: 0.85rem;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ------------------------------------------
   RESPONSIVE
------------------------------------------ */

@media (max-width: 992px) {
  .hero {
    padding-top: 4rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .hero {
    text-align: left;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .contact-form {
    padding: 1.4rem 1.2rem;
  }
}
