/* ============ DSR LOGISTICS SHARED STYLES ============ */

:root {
  --blue: #0F3571;
  --blue-dark: #0A2656;
  --blue-mid: #1E4DA0;
  --blue-light: #E8F0FB;
  --blue-soft: #F3F7FD;
  --orange: #FF6B1A;
  --orange-dark: #E8540B;
  --orange-light: #FFF0E4;
  --orange-soft: #FFF6EE;
  --ink: #0F1B2E;
  --ink-soft: #374151;
  --muted: #6B7280;
  --muted-light: #9CA3AF;
  --line: #E5E7EB;
  --line-soft: #F3F4F6;
  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --green: #16A34A;
  --shadow-sm: 0 1px 3px rgba(15, 27, 46, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 27, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 27, 46, 0.12);
  --shadow-orange: 0 12px 32px rgba(255, 107, 26, 0.3);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }

/* TOP BAR */
.topbar { background: var(--blue-dark); color: #fff; padding: 8px 0; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: inherit; opacity: 0.9; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; color: var(--orange); }
.topbar svg { width: 14px; height: 14px; margin-right: 6px; vertical-align: -2px; }
.social-icons { display: flex; gap: 8px; }
.social-icons a { width: 26px; height: 26px; background: rgba(255,255,255,0.1); border-radius: 50%; display: grid; place-items: center; transition: background 0.2s; font-size: 11px; }
.social-icons a:hover { background: var(--orange); }

/* HEADER */
header { background: #fff; padding: 12px 0; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo img { height: 56px; width: auto; display: block; }
/* Hide old text-based logo elements (kept for backward compatibility but not displayed) */
.logo-mark, .logo-text { display: none; }
nav ul { display: flex; gap: 28px; list-style: none; }
nav > ul > li { position: relative; }
nav a { font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color 0.2s; padding: 6px 0; position: relative; display: inline-flex; align-items: center; gap: 4px; }
nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.25s; }
nav a:hover { color: var(--orange); }
nav a:hover::after { width: 100%; }

/* Dropdown Menu */
nav .has-dropdown > a::before { content: ''; display: inline-block; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 6px; transition: transform 0.2s; order: 2; }
nav .has-dropdown:hover > a::before { transform: rotate(-135deg) translateY(2px); }
nav .has-dropdown > a::after { display: none; }

nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 240px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 53, 113, 0.12), 0 4px 12px rgba(0,0,0,0.06);
  padding: 8px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 1000;
  border: 1px solid #f0f0f0;
}
nav .dropdown-menu::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
nav .has-dropdown:hover .dropdown-menu,
nav .has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
nav .dropdown-menu li { width: 100%; }
nav .dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  width: 100%;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
nav .dropdown-menu a::after { display: none; }
nav .dropdown-menu a:hover { color: var(--orange); background: rgba(255, 107, 26, 0.04); }
nav .dropdown-menu .dropdown-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 8px 0;
  padding: 0;
}
nav .dropdown-menu .dropdown-view-all a {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}
nav .dropdown-menu .dropdown-view-all a:hover {
  color: var(--blue);
  background: rgba(15, 53, 113, 0.04);
}
.header-right { display: flex; gap: 16px; align-items: center; }
.header-phone { text-align: right; line-height: 1.2; }
.header-phone-label { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.header-phone-num { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--orange); margin-top: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.25s; white-space: nowrap; }
.btn-orange { background: var(--orange); color: white; box-shadow: var(--shadow-orange); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-white { background: white; color: var(--blue); border: 1.5px solid var(--line); }
.btn-white:hover { border-color: var(--blue); background: var(--blue-soft); }
.btn-large { padding: 15px 30px; font-size: 15px; }

/* BREADCRUMB */
.breadcrumb { background: var(--bg-soft); padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb-list { display: flex; gap: 8px; align-items: center; color: var(--muted); flex-wrap: wrap; }
.breadcrumb-list a { color: var(--blue); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list .sep { color: var(--muted-light); }
.breadcrumb-list .current { color: var(--ink); font-weight: 600; }

/* HERO (Inner Pages) */
.page-hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%); color: white; padding: 64px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,26,0.2), transparent 60%); pointer-events: none; z-index: 1; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%); z-index: 1; }

/* Hero Background Image Variants */
.page-hero.hero-house-shifting { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/services/house-shifting-hero.jpg') center/cover no-repeat; }
.page-hero.hero-office-shifting { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/services/office-shifting-hero.jpg') center/cover no-repeat; }
.page-hero.hero-car-transport { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/services/car-transport-hero.jpg') center/cover no-repeat; }
.page-hero.hero-bike-transport { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/services/bike-transport-hero.jpg') center/cover no-repeat; }
.page-hero.hero-warehousing { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/services/warehousing-hero.jpg') center/cover no-repeat; }
.page-hero.hero-international { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/services/international-shifting-hero.jpg') center/cover no-repeat; }

.page-hero.hero-kolkata { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/kolkata-banner.jpg') center/cover no-repeat; }
.page-hero.hero-mumbai { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/mumbai-banner.jpg') center/cover no-repeat; }
.page-hero.hero-delhi { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/delhi-banner.jpg') center/cover no-repeat; }
.page-hero.hero-bengaluru { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/bengaluru-banner.jpg') center/cover no-repeat; }
.page-hero.hero-ahmedabad { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/ahmedabad-banner.jpg') center/cover no-repeat; }
.page-hero.hero-pune { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/pune-banner.jpg') center/cover no-repeat; }
.page-hero.hero-chennai { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/chennai-banner.jpg') center/cover no-repeat; }
.page-hero.hero-hyderabad { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/hyderabad-banner.jpg') center/cover no-repeat; }
.page-hero.hero-gurgaon { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/gurgaon-banner.jpg') center/cover no-repeat; }
.page-hero.hero-noida { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/noida-banner.jpg') center/cover no-repeat; }
.page-hero.hero-jaipur { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/jaipur-banner.jpg') center/cover no-repeat; }
.page-hero.hero-surat { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/surat-banner.jpg') center/cover no-repeat; }

/* Default for area pages - use Kolkata banner */
.page-hero.hero-area { background: linear-gradient(135deg, rgba(11,35,80,0.92) 0%, rgba(15,53,113,0.85) 50%, rgba(26,79,142,0.80) 100%), url('images/cities/kolkata-banner.jpg') center/cover no-repeat; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; position: relative; z-index: 2; align-items: start; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 107, 26, 0.15); border: 1px solid rgba(255, 107, 26, 0.35); color: #FFB584; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-tag::before { content: ''; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.page-hero h1 { color: white; font-size: clamp(30px, 4.5vw, 48px); line-height: 1.15; margin-bottom: 20px; font-weight: 800; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero .lead { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.55; max-width: 540px; margin-bottom: 24px; }
.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 500px; }
.hero-feature { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.95); }
.hero-feature-check { width: 24px; height: 24px; background: var(--orange); color: white; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }

/* ENQUIRY FORM CARD */
.enquiry-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 30px 80px rgba(0,0,0,0.25); color: var(--ink); position: relative; }
.enquiry-card::before { content: ''; position: absolute; top: -16px; left: 28px; right: 28px; height: 4px; background: linear-gradient(90deg, var(--orange), var(--blue)); border-radius: 4px; }
.enquiry-header { text-align: center; margin-bottom: 20px; }
.enquiry-badge { display: inline-block; background: var(--orange-light); color: var(--orange-dark); padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.enquiry-header h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.enquiry-header p { font-size: 13px; color: var(--muted); }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; background: var(--bg-soft); border: 1.5px solid transparent; border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--ink); outline: none; transition: all 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 4px var(--orange-light); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit { width: 100%; padding: 14px; background: var(--orange); color: white; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow-orange); margin-top: 8px; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* SECTIONS */
section { padding: 60px 0; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; padding: 5px 12px; background: var(--orange-light); border-radius: 999px; }
.section-title { font-size: clamp(26px, 4vw, 38px); line-height: 1.2; font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.section-title .highlight { color: var(--orange); }
.section-intro { font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.6; }

/* CONTENT */
.content-section { padding: 60px 0; background: white; }
.content-wrap { max-width: 860px; margin: 0 auto; }
.content-wrap h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: var(--ink); margin-bottom: 16px; margin-top: 40px; line-height: 1.2; letter-spacing: -0.02em; scroll-margin-top: 100px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h2 .hl { color: var(--orange); }
.content-wrap h3 { font-size: 20px; font-weight: 700; color: var(--blue); margin-top: 28px; margin-bottom: 10px; line-height: 1.3; }
.content-wrap p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.content-wrap p strong { color: var(--ink); font-weight: 700; }
.content-wrap p a { color: var(--orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.content-wrap p a:hover { color: var(--orange-dark); }
.content-wrap ul { margin: 16px 0 20px; padding-left: 0; list-style: none; }
.content-wrap ul li { position: relative; padding-left: 30px; margin-bottom: 10px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }
.content-wrap ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 18px; height: 18px; background: var(--orange-light); border-radius: 5px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF6B1A' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.content-wrap ul li strong { color: var(--ink); font-weight: 700; }

.content-toc { background: var(--blue-soft); border: 1px solid var(--blue-light); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 36px; }
.content-toc h4 { font-size: 13px; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.content-toc ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 20px; }
.content-toc ul li { padding: 0; margin-bottom: 6px; font-size: 13.5px; break-inside: avoid; }
.content-toc ul li::before { display: none; }
.content-toc a { color: var(--ink-soft); font-weight: 500; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.content-toc a::before { content: '→'; color: var(--orange); font-weight: 700; }
.content-toc a:hover { color: var(--orange); }

.highlight-box { background: linear-gradient(135deg, var(--orange-soft), var(--orange-light)); border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 8px; margin: 28px 0; }
.highlight-box p { margin-bottom: 0; color: var(--ink); }
.highlight-box strong { color: var(--orange-dark); }

.info-box { background: var(--blue-soft); border: 1px solid var(--blue-light); padding: 24px; border-radius: var(--radius); margin: 28px 0; }
.info-box h4 { font-size: 17px; color: var(--blue); margin-bottom: 8px; }
.info-box p { margin-bottom: 0; font-size: 14.5px; }

/* PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin: 24px 0; }
.pricing-table thead { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; }
.pricing-table th { padding: 14px; text-align: left; font-size: 13px; font-weight: 700; }
.pricing-table td { padding: 12px 14px; border-top: 1px solid var(--line); font-size: 14px; }
.pricing-table td:first-child { font-weight: 700; color: var(--ink); }
.pricing-table tr:hover { background: var(--bg-soft); }
.pricing-table .price { color: var(--orange); font-weight: 600; }

/* FAQ */
.faq-section { background: var(--bg-soft); padding: 60px 0; }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all 0.2s; }
.faq-item:hover { border-color: var(--orange-light); }
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-md); }
.faq-q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--ink); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--orange-light); color: var(--orange); border-radius: 6px; display: grid; place-items: center; font-weight: 700; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* CTA */
.final-cta { padding: 60px 0; }
.cta-box { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.cta-box h2 { color: white; font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; line-height: 1.2; position: relative; }
.cta-box p { font-size: 16px; opacity: 0.95; margin-bottom: 26px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-box .btn-blue { background: var(--blue-dark); }
.cta-box .btn-blue:hover { background: var(--ink); }
.cta-box .btn-white { background: white; color: var(--orange); border: none; }
.cta-box .btn-white:hover { background: var(--bg-soft); color: var(--orange-dark); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--ink); color: white; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo img { height: 56px; width: auto; background: white; padding: 8px 12px; border-radius: 8px; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tag { color: rgba(255,255,255,0.5); }
.footer-brand > p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65; margin: 18px 0; max-width: 340px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 10px; display: flex; gap: 10px; line-height: 1.5; }
.footer-contact-list svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: inherit; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--orange); }
.footer-col h4 { font-size: 15px; color: var(--orange); font-weight: 700; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 14px; transition: all 0.2s; }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a { color: inherit; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* FLOATING BUTTONS */
.float-group { position: fixed; bottom: 24px; right: 24px; z-index: 100; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform 0.3s; position: relative; color: white; }
.float-btn:hover { transform: scale(1.08); }
.float-whatsapp { background: #25D366; }
.float-whatsapp::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: waRing 2s infinite; z-index: -1; }
@keyframes waRing { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
.float-call { background: var(--orange); }
.float-btn svg { width: 26px; height: 26px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav ul { display: none; }
  .header-phone { display: none; }
}
@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar-left { display: none; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .hero-features { grid-template-columns: 1fr; }
  .content-toc ul { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  section, .content-section, .faq-section, .final-cta { padding: 40px 0; }
  .page-hero { padding: 40px 0 60px; }
  .content-wrap h2 { font-size: 22px; }
  .content-wrap h3 { font-size: 18px; }
  .content-wrap p { font-size: 15px; }
}
