/* ==========================================================================
   RAASO TRUCKING LLC — "Daybreak" bright theme, amber accent
   Bright, warm, energetic — distinctive editorial type, amber road motifs,
   soft warm shadows. TCR-compliant structure preserved.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* amber accent system */
  --amber: #F26A1B;
  --amber-hi: #FF8A34;
  --amber-deep: #D8540C;
  --amber-text: #B84A08;   /* AA-safe amber for small text on light bg */
  --amber-tint: rgba(242, 106, 27, 0.10);
  --amber-ring: rgba(242, 106, 27, 0.18);

  /* bright warm base */
  --bg: #FDFBF7;          /* warm off-white page */
  --bg-2: #F6F1E9;        /* light warm sand */
  --surface: #FFFFFF;
  --line: #ECE6DB;
  --line-strong: #DFD7C8;

  --ink: #1A1D26;         /* near-black charcoal */
  --body: #55606F;
  --muted: #67707E;

  /* dark accent (footer / hero contrast) */
  --dark: #14171F;
  --dark-2: #1E2430;
  --dark-line: rgba(255, 255, 255, 0.10);
  --on-dark: #E7E3DA;
  --muted-on-dark: #9AA3B0;

  --success: #16A34A;

  --shadow-sm: 0 2px 10px rgba(26, 29, 38, 0.06);
  --shadow-md: 0 16px 36px rgba(26, 29, 38, 0.10);
  --shadow-lg: 0 30px 64px rgba(26, 29, 38, 0.14);
  --shadow-amber: 0 14px 30px rgba(242, 106, 27, 0.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* legacy aliases used by inline styles */
  --primary-red: var(--amber);
  --primary-red-hover: var(--amber-deep);
  --accent-red: var(--amber-hi);
  --red-tint: var(--amber-tint);
  --red-ring: var(--amber-ring);
  --navy-dark: var(--bg);
  --navy-surface: var(--surface);
  --navy-card: var(--bg-2);
  --navy-border: var(--line);
  --text-main: var(--ink);
  --text-muted: var(--body);
  --text-dark: var(--ink);
  --success-green: var(--success);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body { overflow-x: hidden; min-height: 100vh; }

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }

.ico { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- TOP BAR (dark accent strip) ---------- */
.top-bar { background: var(--dark); color: var(--muted-on-dark); font-size: 0.8rem; padding: 9px 0; }
.top-bar-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-info-item { display: flex; align-items: center; gap: 7px; }
.top-info-item .ico { width: 14px; height: 14px; color: var(--amber-hi); }
.top-info-item a:hover { color: #fff; }
.top-right { display: flex; align-items: center; gap: 12px; }
.badge-247 { background: rgba(242,106,27,.18); color: var(--amber-hi); border: 1px solid rgba(242,106,27,.4); padding: 3px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: .3px; }
.social-links { display: flex; gap: 8px; }
.social-icon { width: 27px; height: 27px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--on-dark); }
.social-icon:hover { background: var(--amber); color: #fff; transform: translateY(-2px); }

/* ---------- HEADER (bright, sticky) ---------- */
.site-header { background: rgba(253, 251, 247, 0.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 900; }
.nav-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; }
.logo-brand { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-cta-mobile { display: none; }
.nav-link { display: block; padding: 10px 15px; font-size: 0.9rem; font-weight: 600; color: var(--ink); border-radius: 9px; position: relative; letter-spacing: .2px; }
.nav-link:hover { color: var(--amber); background: var(--amber-tint); }
.nav-link.active { color: var(--amber); }
.nav-link.active::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px; border-radius: 2px; background: var(--amber); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--amber-hi), var(--amber-deep)); color: #fff; box-shadow: var(--shadow-amber); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(242,106,27,.4); filter: brightness(1.04); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-tint); }
.mobile-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 8px; }
.mobile-toggle .ico { width: 26px; height: 26px; }

/* ---------- HERO (bright, truck on the right) ---------- */
.hero-section { position: relative; min-height: 88vh; display: flex; align-items: center; padding: 80px 0 64px; overflow: hidden; background: var(--bg); }
.hero-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('../assets/images/hero-truck.jpg') right center / cover no-repeat;
}
/* warm cream fade so the left stays bright & the truck shows on the right */
.hero-section::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, var(--bg) 0%, var(--bg) 34%, rgba(253,251,247,.85) 48%, rgba(253,251,247,.35) 66%, rgba(253,251,247,.08) 100%);
}
.hero-overlay-grid { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(rgba(242,106,27,.10) 1px, transparent 0); background-size: 30px 30px; mask-image: linear-gradient(to right, black, transparent 45%); pointer-events: none; }
.hero-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; width: 100%; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line-strong); color: var(--amber-text); padding: 8px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1.6px; box-shadow: var(--shadow-sm); }
.hero-badge .ico { width: 16px; height: 16px; }
.hero-title { font-size: 4rem; font-weight: 700; color: var(--ink); line-height: 1.05; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero-title span { color: transparent; background: linear-gradient(120deg, var(--amber-hi), var(--amber-deep)); -webkit-background-clip: text; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: var(--body); max-width: 540px; margin-bottom: 34px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* Quote card */
.calculator-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px; position: relative; }
.calc-tabs { display: flex; gap: 6px; margin-bottom: 22px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.calc-tab { background: transparent; border: none; padding: 9px 16px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; color: var(--muted); cursor: pointer; transition: var(--transition); }
.calc-tab.active { background: var(--amber); color: #fff; }
.calc-tab:not(.active):hover { background: var(--bg-2); color: var(--ink); }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; margin-bottom: 7px; font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.form-control { width: 100%; padding: 12px 14px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); color: var(--ink); font-size: 0.95rem; font-family: inherit; transition: var(--transition); }
.form-control::placeholder { color: var(--muted); }
.form-control:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-ring); }
select.form-control { appearance: auto; }
.tcr-consent-wrapper { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; margin: 18px 0; }
.tcr-checkbox-label { display: flex; gap: 10px; align-items: flex-start; font-size: 0.78rem; color: var(--body); line-height: 1.55; cursor: pointer; }
.tcr-checkbox-label input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--amber); }
.tcr-checkbox-label a { color: var(--amber-text); text-decoration: underline; font-weight: 600; }
.tcr-checkbox-label a:hover { color: var(--amber); }

/* ---------- STATS ---------- */
.stats-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 58px 0; }
.stats-grid { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.stat-card { display: flex; align-items: center; gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; }
.stat-card::after { content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--amber); opacity: 0; transition: var(--transition); }
.stat-card:hover { transform: translateY(-4px); border-color: rgba(242,106,27,.4); box-shadow: var(--shadow-md); }
.stat-card:hover::after { opacity: 1; }
.stat-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--amber-tint); color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon .ico { width: 26px; height: 26px; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--ink); line-height: 1.05; }
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 3px; }

/* ---------- SECTIONS ---------- */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; padding: 0 24px; }
.section-tag { display: inline-block; color: var(--amber-text); font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; position: relative; padding-left: 34px; }
.section-tag::before { content: ""; position: absolute; left: 0; top: 50%; width: 26px; height: 2px; background: var(--amber); }
.section-title { font-size: 2.4rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.02em; }
.section-subtitle { color: var(--body); font-size: 1.02rem; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--bg-2); }
.about-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-box { position: relative; }
.about-img-box img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.about-badge-floating { position: absolute; bottom: -22px; right: -18px; background: linear-gradient(135deg, var(--amber-hi), var(--amber-deep)); color: #fff; border-radius: var(--radius-md); padding: 18px 24px; text-align: center; box-shadow: var(--shadow-amber); }
.about-badge-number { font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 700; }
.about-badge-text { font-size: 0.72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; opacity: .95; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 8px; }
.about-feature-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.about-feature-item svg { color: var(--amber); flex-shrink: 0; }

/* ---------- SERVICES ---------- */
.services-grid { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(242,106,27,.10), transparent 70%); opacity: 0; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(242,106,27,.4); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-icon-box { width: 56px; height: 56px; border-radius: 14px; background: var(--amber-tint); color: var(--amber); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.service-icon-box .ico { width: 27px; height: 27px; stroke-width: 1.8; }
.service-card:hover .service-icon-box { background: linear-gradient(135deg, var(--amber-hi), var(--amber-deep)); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-title { font-size: 1.18rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.service-desc { color: var(--muted); font-size: 0.93rem; position: relative; }

/* ---------- PARTNERS ---------- */
.partners-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.partners-grid { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; align-items: stretch; }
.partner-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 20px; min-height: 84px; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.partner-card:hover { transform: translateY(-4px); border-color: rgba(242,106,27,.4); box-shadow: var(--shadow-md); }
.partner-card img { max-height: 40px; max-width: 150px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: var(--transition); }
.partner-card:hover img { filter: none; opacity: 1; }
.partner-card .partner-mark { max-height: 32px; max-width: 32px; }
.partner-name { color: var(--ink); font-weight: 700; font-size: 0.96rem; letter-spacing: .3px; white-space: nowrap; opacity: .78; transition: var(--transition); }
.partner-card:hover .partner-name { opacity: 1; color: var(--amber-deep); }
/* white/wordmark logos (built light) render dark on the bright cards */
.partner-card.mono img { filter: grayscale(1) brightness(0); opacity: .7; }
.partner-card.mono:hover img { filter: grayscale(1) brightness(0); opacity: 1; }

/* ---------- GALLERY ---------- */
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; padding: 0 24px; }
.filter-btn { background: var(--surface); border: 1px solid var(--line-strong); color: var(--body); padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: linear-gradient(135deg, var(--amber-hi), var(--amber-deep)); color: #fff; border-color: transparent; box-shadow: var(--shadow-amber); }
.gallery-grid { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 280px; cursor: pointer; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,23,31,.9) 0%, rgba(20,23,31,.2) 45%, transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat { font-size: 0.7rem; color: var(--amber-hi); font-weight: 800; letter-spacing: 1.5px; }
.gallery-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-top: 4px; }

/* ---------- CONTACT ---------- */
.contact-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-detail-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--amber-tint); color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon .ico { width: 24px; height: 24px; }
.contact-detail-title { font-weight: 700; color: var(--ink); font-size: 0.95rem; margin-bottom: 3px; }
.contact-detail-value { color: var(--body); font-size: 0.95rem; }
.contact-detail-value a:hover { color: var(--amber-text); }

/* ---------- FOOTER (dark grounding band) ---------- */
.site-footer { background: var(--dark); color: var(--muted-on-dark); padding: 76px 0 0; }
.footer-container { max-width: 1320px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand p { margin: 18px 0; font-size: 0.92rem; line-height: 1.75; }
.tcr-carrier-notice { background: var(--dark-2); border: 1px solid var(--dark-line); border-left: 3px solid var(--amber); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.78rem; line-height: 1.6; }
.tcr-carrier-notice strong { color: var(--on-dark); }
.footer-heading { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .3px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: var(--amber-hi); padding-left: 4px; }
.site-footer a:hover { color: var(--amber-hi); }
.footer-bottom { border-top: 1px solid var(--dark-line); padding: 22px 24px; max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- MODALS ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(20, 23, 31, 0.55); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-content { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 36px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 14px; right: 16px; background: var(--bg-2); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem; color: var(--body); cursor: pointer; transition: var(--transition); }
.modal-close:hover { background: var(--amber); color: #fff; }

/* tracking result (JS-injected) */
#trackingResult > div { background: var(--bg-2) !important; border-color: var(--line) !important; }
#trackingResult strong { color: var(--ink) !important; }
#trackingResult .badge-247 { color: var(--amber-deep); border-color: rgba(242,106,27,.35); background: var(--amber-tint); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 3rem; }
  .about-container { grid-template-columns: 1fr; gap: 44px; }
  .contact-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  /* on tablet/phone the truck sits behind a stronger cream wash for readability */
  .hero-section::after { background: linear-gradient(180deg, rgba(253,251,247,.72) 0%, rgba(253,251,247,.92) 55%, var(--bg) 100%); }
  .top-bar { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .header-actions .btn-outline { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 12px 16px; }
  .nav-menu.open li { list-style: none; }
  .nav-menu.open .nav-cta-mobile { display: block; margin-top: 6px; border-top: 1px solid var(--line); padding-top: 6px; }
  .nav-menu.open .nav-cta-mobile .nav-link { color: var(--amber-deep); font-weight: 700; }
  .nav-menu.open .nav-link { padding: 13px 14px; font-size: 1.05rem; }
  .nav-menu.open .nav-link.active::after { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero-section { min-height: auto; padding: 52px 0; }
  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .section-title { font-size: 1.8rem; }
  .section-header { margin-bottom: 44px; }
  .footer-container { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-section { padding: 44px 0; }
  .calculator-card { padding: 22px; }
  .contact-info-card { padding: 28px; }
  .about-badge-floating { right: 12px; bottom: -18px; padding: 14px 18px; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-content { padding: 26px 22px; }
}

@media (max-width: 480px) {
  .services-grid, .partners-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .stat-value { font-size: 1.8rem; }
  .btn { padding: 12px 18px; font-size: 0.8rem; }
}
