/* =====================================================
   IFSG — International Freight Solutions Group LLC
   Faithful recreation of original Manus design
   ===================================================== */

:root {
  --orange:       #ff6b35;
  --orange-dark:  #e85c25;
  --orange-light: rgba(255,107,53,0.1);
  --blue:         #2563eb;
  --blue-light:   rgba(37,99,235,0.1);
  --dark:         #111827;
  --dark-card:    #1f2937;
  --dark-border:  #374151;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.2);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .25s; }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; }
p  { color: var(--gray-500); line-height: 1.7; }

/* ─── Container ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media(min-width:1024px){ .container { padding: 0 2rem; } }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
header {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.logo-badge {
  width: 36px; height: 36px; background: var(--orange); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .7rem;
  color: #fff; letter-spacing: .3px; flex-shrink: 0;
}
.logo-name {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem;
  color: #fff; line-height: 1;
}

/* Desktop nav */
nav { display: none; align-items: center; gap: .25rem; }
@media(min-width:1100px){ nav { display: flex; } }

nav a {
  color: rgba(255,255,255,0.75); font-size: .88rem; font-weight: 500;
  padding: .5rem .75rem; border-radius: 6px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: #fff; background: rgba(255,255,255,0.08);
}

/* Header right */
.header-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.lang-btn {
  background: none; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: .78rem; font-weight: 700; padding: .3rem .6rem;
  border-radius: 5px; transition: all .25s; line-height: 1;
}
.lang-btn.active {
  background: var(--orange); border-color: var(--orange); color: #fff;
}
.lang-btn:hover:not(.active) {
  border-color: var(--orange); color: #fff;
}

.btn-outline-white {
  display: inline-flex; align-items: center; gap:.4rem;
  background: none; border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 7px; cursor: pointer;
  transition: all .25s; white-space: nowrap; text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: #fff; color: #fff;
}

.btn-orange {
  display: inline-flex; align-items: center; gap:.4rem;
  background: var(--orange); border: 1.5px solid var(--orange);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: .5rem 1.1rem; border-radius: 7px; cursor: pointer;
  transition: all .25s; white-space: nowrap; text-decoration: none;
}
.btn-orange:hover {
  background: var(--orange-dark); border-color: var(--orange-dark); color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,.4);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .25rem;
}
@media(min-width:1100px){ .hamburger { display: none; } }
.hamburger span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
@media(max-width:1099px){
  nav {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; inset: 0; background: var(--dark); z-index: 98;
    gap: 1.5rem; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s, visibility .3s;
    top: 0; padding-top: 80px;
  }
  nav.open { opacity: 1; visibility: visible; pointer-events: all; }
  nav a { font-size: 1.3rem; padding: .75rem 1.5rem; }
}
/* Keep header above nav overlay so hamburger is always clickable */
header { z-index: 200 !important; }

main { margin-top: 68px; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  background: var(--dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-truck.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 760px; padding: 3rem 1.5rem; width: 100%;
}
.hero-content h1 { color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero-content h2 {
  color: rgba(255,255,255,.9); font-size: clamp(1.1rem,2.5vw,1.4rem);
  font-weight: 600; margin-bottom: 1.25rem;
}
.hero-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2.25rem; }

.hero-buttons { display: flex; flex-direction: column; gap: .85rem; max-width: 460px; margin: 0 auto; }

.hero-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--orange); color: #fff; font-family: 'Poppins',sans-serif;
  font-weight: 600; font-size: 1rem; padding: 1rem 2rem; border-radius: 8px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .25s, box-shadow .25s, transform .25s;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.hero-btn-primary:hover {
  background: var(--orange-dark); color: #fff;
  box-shadow: 0 8px 30px rgba(255,107,53,.5);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 1rem;
  padding: 1rem 2rem; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.4); cursor: pointer; text-decoration: none;
  transition: all .25s; backdrop-filter: blur(8px);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,.18); border-color: #fff; color: #fff;
}

.hero-arrow {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,.6); animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-light { background: var(--white); }
.section-gray  { background: var(--gray-50); }
.section-dark  { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .6rem; }
.section-header.dark h2 { color: #fff; }
.section-header p { font-size: 1.05rem; }
.section-header.dark p { color: var(--gray-400); }
.divider {
  width: 52px; height: 3px; background: var(--orange);
  margin: 1rem auto; border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media(min-width:768px){ .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* Service card — white bg, light icon */
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  cursor: default;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange); border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0); transition: transform .3s ease;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover .svc-icon { background: var(--orange); }
.svc-card:hover .svc-icon svg { stroke: #fff; color: #fff; }

.svc-icon {
  width: 52px; height: 52px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s;
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--blue); transition: stroke .3s; }

.svc-card h3 { color: var(--gray-900); margin-bottom: .6rem; font-size: 1.05rem; }
.svc-card p  { font-size: .92rem; color: var(--gray-500); margin: 0; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   INDUSTRY CARDS — blue icons + bullet list
══════════════════════════════════════════════════════ */
.ind-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ind-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.ind-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.ind-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }

.ind-card h3 { color: var(--gray-900); margin-bottom: .75rem; }
.ind-card > p { font-size: .92rem; margin-bottom: 1.25rem; }
.ind-bullets { display: flex; flex-direction: column; gap: .45rem; }
.ind-bullets li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--gray-600, #4b5563);
}
.ind-bullets li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   WHY CHOOSE — dark bg cards
══════════════════════════════════════════════════════ */
.why-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 12px 40px rgba(0,0,0,.4);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }

.why-card h3 { color: #fff; margin-bottom: .6rem; font-size: 1.05rem; }
.why-card p  { font-size: .9rem; color: var(--gray-400); margin: 0; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.stars { display: flex; gap: .2rem; margin-bottom: 1.25rem; }
.stars span { color: var(--orange); font-size: 1.1rem; }

.testi-quote { font-size: .95rem; color: var(--gray-700); font-style: italic; line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }
.testi-author { font-weight: 700; color: var(--gray-900); font-size: .95rem; }
.testi-role   { font-size: .83rem; color: var(--gray-500); margin: 0; }

/* ══════════════════════════════════════════════════════
   FUTURE SOLUTIONS
══════════════════════════════════════════════════════ */
.future-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 820px; margin: 0 auto;
}
@media(min-width:640px){ .future-grid { grid-template-columns: repeat(2, 1fr); } }

.future-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.future-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
}
.future-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.coming-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .25rem .65rem;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
}

.future-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.future-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 2; }

.future-card h3 { color: var(--gray-900); margin-bottom: .6rem; }
.future-card p  { font-size: .9rem; color: var(--gray-500); margin: 0; line-height: 1.65; }

.future-note {
  text-align: center; margin-top: 3rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  font-size: .95rem; color: var(--gray-500);
}

/* ══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--dark); padding: 5rem 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p  { color: var(--gray-400); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-section .btn-orange { padding: .85rem 2.5rem; font-size: 1rem; }

/* ══════════════════════════════════════════════════════
   PAGE HEADER BANNER
══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}
.page-hero h1 { color: #fff; }
.page-hero p  { color: var(--gray-400); font-size: 1.1rem; margin-top: .75rem; }

/* ══════════════════════════════════════════════════════
   CONTACT FORM — dark style (from screenshot)
══════════════════════════════════════════════════════ */
.contact-page { background: var(--gray-50); padding: 5rem 0; }

.contact-form-wrap {
  max-width: 600px; margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}
.contact-form-wrap h2 { color: #fff; text-align: center; margin-bottom: .5rem; }
.contact-form-wrap .sub { color: var(--gray-400); text-align: center; font-size: .95rem; margin-bottom: .5rem; }
.contact-divider { width: 52px; height: 3px; background: var(--orange); border-radius: 2px; margin: 1rem auto 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.75); margin-bottom: .45rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background: #1f2937;
  border: 1.5px solid var(--dark-border);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .25s, box-shadow .25s;
}
.form-input::placeholder, .form-textarea::placeholder { color: #4b5563; }
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,.15);
}
.form-textarea { min-height: 130px; resize: vertical; }

/* SMS consent */
.sms-wrap {
  display: flex; align-items: flex-start; gap: .75rem;
  background: #1f2937;
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.sms-wrap input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0;
  accent-color: var(--orange); cursor: pointer;
}
.sms-label {
  font-size: .78rem; color: #9ca3af; line-height: 1.6; cursor: pointer;
}
.sms-label a { color: var(--orange); font-weight: 600; }

.btn-submit {
  width: 100%; background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 1rem; padding: .95rem; border: none; border-radius: 8px;
  cursor: pointer; transition: background .25s, transform .25s, box-shadow .25s;
  letter-spacing: .3px;
}
.btn-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(255,107,53,.4);
  transform: translateY(-2px);
}

/* Also dark contact info cards alongside form */
.contact-info-grid { display: grid; gap: 1.25rem; }
.cinfo-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  display: flex; gap: .85rem; align-items: flex-start;
  transition: border-color .25s;
}
.cinfo-card:hover { border-color: var(--orange); }
.cinfo-icon {
  width: 38px; height: 38px; background: var(--orange-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cinfo-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; }
.cinfo-title { font-size: .78rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .2rem; }
.cinfo-val { font-size: .95rem; color: #fff; font-weight: 500; }
.cinfo-val a { color: #fff; }
.cinfo-val a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-content { max-width: 860px; margin: 0 auto; }
.about-block { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--gray-200); }
.about-block:last-child { border-bottom: none; }
.about-block h2 { margin-bottom: 1rem; font-size: 1.75rem; }
.about-block p  { font-size: .97rem; line-height: 1.8; }

.value-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.value-row  { display: flex; gap: 1rem; align-items: flex-start; }
.value-dot  { width: 36px; height: 36px; background: var(--orange-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.value-row strong { color: var(--gray-900); display: block; margin-bottom: .2rem; }
.value-row p { margin: 0; font-size: .92rem; }

.director-card {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem; margin-top: 1rem;
}
.director-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.director-name  { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: .2rem; }
.director-title { color: var(--orange); font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.director-sub   { font-size: .85rem; color: var(--gray-500); margin: 0; }

/* ══════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════ */
.legal-wrap { max-width: 900px; margin: 0 auto; }
.legal-highlight {
  background: #fff7ed; border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0; margin-bottom: 2.5rem;
}
.legal-highlight p { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin: 0; }
.legal-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--gray-200); }
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 { font-size: 1.25rem; margin-bottom: .85rem; color: var(--gray-900); }
.legal-block ul { margin-left: 1.5rem; margin-top: .6rem; }
.legal-block ul li { color: var(--gray-500); margin-bottom: .4rem; font-size: .93rem; list-style: disc; }
.legal-block a { color: var(--orange); }
.legal-meta { padding-top: 1.5rem; border-top: 1px solid var(--gray-200); color: var(--gray-400); font-size: .85rem; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  background: #0d1117;
  padding: 4rem 0 0;
  color: var(--gray-400);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media(min-width:640px){ .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Brand col */
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 240px; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s; text-decoration: none; color: var(--gray-400);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* Nav cols */
.footer-col h4 { color: #fff; margin-bottom: 1.25rem; font-size: .8rem; letter-spacing: .8px; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: var(--gray-400); font-size: .88rem; transition: color .25s; }
.footer-col a:hover { color: var(--orange); }

/* Contact col */
.footer-cinfo { display: flex; flex-direction: column; gap: .7rem; }
.footer-cinfo-item { display: flex; gap: .65rem; align-items: flex-start; }
.footer-cinfo-item svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-cinfo-item span, .footer-cinfo-item a { font-size: .88rem; color: var(--gray-400); line-height: 1.5; }
.footer-cinfo-item a:hover { color: var(--orange); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: .5rem;
  align-items: center; text-align: center;
  font-size: .82rem;
}
@media(min-width:768px){
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ══════════════════════════════════════════════════════
   SCROLL-TO-TOP
══════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 50;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,53,.4);
  opacity: 0; visibility: hidden;
  transition: all .3s; font-size: 1rem;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════
   NOTIFICATIONS
══════════════════════════════════════════════════════ */
.toast {
  position: fixed; top: 80px; right: 1.5rem;
  padding: .9rem 1.4rem; border-radius: var(--radius-sm);
  color: #fff; font-weight: 500; font-size: .93rem;
  box-shadow: var(--shadow-xl); z-index: 9999; max-width: 380px;
  animation: slideInRight .3s ease;
}
.toast-success { background: #16a34a; }
.toast-error   { background: #dc2626; }
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   FADE-IN ANIMATIONS
══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
body.js-ready .fade-up { opacity: 0; transform: translateY(28px); }
body.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════════════════════ */
@media(max-width:640px){
  .section { padding: 3.5rem 0; }
  .hero-buttons { padding: 0; }
  .contact-form-wrap { padding: 2rem 1.25rem; border-radius: var(--radius); }
  .director-card { flex-direction: column; align-items: flex-start; }
}
@media print {
  header, footer, .scroll-top { display: none; }
  main { margin-top: 0; }
}

/* ══════════════════════════════════════════════════════
   ENHANCED RESPONSIVE — ALL BREAKPOINTS
══════════════════════════════════════════════════════ */

/* ─── Extra Small: phones 320–479px ──────────────────── */
@media (max-width: 479px) {
  .header-right .btn-outline-white,
  .header-right .btn-orange { display: none; }
  .header-right { gap: .3rem; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content h2 { font-size: 1rem; }
  .hero-content p  { font-size: .9rem; }
  .hero-buttons    { max-width: 100%; }
  .hero-btn-primary, .hero-btn-secondary { font-size: .9rem; padding: .85rem 1.25rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 2.75rem 0; }
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.75rem; }
}

/* ─── Small: phones 480–639px ────────────────────────── */
@media (min-width: 480px) and (max-width: 639px) {
  .header-right .btn-outline-white { display: none; }
  .hero-content h1 { font-size: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ─── Medium: tablets 640–1023px ─────────────────────── */
@media (min-width: 640px) and (max-width: 1023px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .header-right .btn-outline-white { display: none; }
}

/* ─── Large desktop 1280px+ ──────────────────────────── */
@media (min-width: 1280px) {
  .container { max-width: 1280px; }
  h1 { font-size: 3.75rem; }
}

/* ─── Ultra-wide 1600px+ (4K / large monitors) ───────── */
@media (min-width: 1600px) {
  .container { max-width: 1440px; }
  body { font-size: 17px; }
  .hero { min-height: calc(100vh - 68px); }
  .hero-content h1 { font-size: 4.25rem; }
  .hero-content h2 { font-size: 1.6rem; }
  .hero-content p  { font-size: 1.15rem; }
  .section { padding: 6rem 0; }
}

/* ─── Touch-friendly tap targets ─────────────────────── */
@media (pointer: coarse) {
  .btn-orange, .btn-outline-white, .btn-submit,
  .hero-btn-primary, .hero-btn-secondary { min-height: 48px; }
  nav a { min-height: 48px; display: flex; align-items: center; }
  .lang-btn { min-width: 44px; min-height: 36px; }
}

/* ─── High-DPI / Retina display: image sharpness ─────── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg {
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
  }
}
