/* ===================================================
   RS LOGISTICS & CARGO — PREMIUM STYLESHEET
   Fonts: Montserrat (headings) + Inter (body)
   Version: 2.0 — Typography Upgrade
=================================================== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --red-light:  #E8213F;
  --blue:       #003087;
  --blue-dark:  #001F5B;
  --blue-light: #1A4BA0;
  --gold:       #F5A623;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --light-gray: #EEF1F7;
  --gray:       #8A94A6;
  --dark:       #111827;
  --text:       #1E2A3B;
  --text-light: #4B5A6E;
  --border:     #DDE3EE;
  --shadow:     0 4px 24px rgba(0,48,135,0.09);
  --shadow-lg:  0 12px 48px rgba(0,48,135,0.15);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: all 0.28s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --section-pad:    90px;
  --section-pad-sm: 56px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: 2.875rem; letter-spacing: -0.03em; }
h2 { font-size: 2.125rem; letter-spacing: -0.025em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; letter-spacing: 0; }
h5 { font-size: 1rem; font-weight: 700; }

p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--text); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary  { background: var(--red); color: var(--white); }
.btn-primary:hover  { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.35); color: var(--white); }
.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-2px); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #e09510; transform: translateY(-2px); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.82); }
.top-bar a:hover { color: var(--gold); }
.top-bar i { margin-right: 5px; color: var(--gold); }

/* ===== HEADER ===== */
.header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.07); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 1.05rem; color: white; letter-spacing: -1px; flex-shrink: 0; }
.logo-text span:first-child { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.0625rem; color: var(--blue); line-height: 1.1; letter-spacing: -0.02em; }
.logo-text span:last-child { display: block; font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 5px; padding: 9px 13px; font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; color: var(--text); border-radius: 6px; letter-spacing: 0.01em; text-transform: uppercase; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--red); background: rgba(200,16,46,0.06); }
.nav-menu > li > a i { font-size: 0.65rem; transition: var(--transition); }
.nav-menu > li:hover > a i { transform: rotate(180deg); }

.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px; background: var(--white); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 200; }
.nav-menu > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 12px 18px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--light-gray); line-height: 1.4; }
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--off-white); color: var(--red); padding-left: 22px; }
.dropdown-menu li a i { color: var(--red); width: 16px; }
.nav-cta { margin-left: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #1A4BA0 100%); position: relative; padding: 90px 0 72px; overflow: hidden; min-height: 88vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=70') center/cover; opacity: 0.10; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, var(--off-white), transparent); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.38); color: var(--gold); padding: 7px 18px; border-radius: 50px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px; }

.hero-content h1 { color: var(--white); font-size: clamp(2.125rem, 4.5vw, 3.25rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 22px; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,0.78); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 32px; max-width: 500px; }

.hero-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14); flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 2.125rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600; color: rgba(255,255,255,0.58); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 5px; }

/* ===== ENQUIRY FORM ===== */
.enquiry-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: 0 24px 64px rgba(0,0,0,0.22); position: relative; z-index: 2; }
.enquiry-card h3 { font-size: 1.25rem; color: var(--blue); margin-bottom: 5px; }
.enquiry-card > p { font-size: 0.8125rem; font-weight: 500; color: var(--gray); margin-bottom: 22px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 7px; font-family: var(--font-body); font-size: 0.9375rem; color: var(--text); background: var(--off-white); transition: var(--transition); outline: none; line-height: 1.5; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(0,48,135,0.08); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A94A6' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; }

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--blue-dark); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag { display: inline-block; background: rgba(200,16,46,0.07); color: var(--red); padding: 5px 16px; border-radius: 50px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; border: 1px solid rgba(200,16,46,0.18); }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.75; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--blue)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 68px; height: 68px; background: linear-gradient(135deg, rgba(200,16,46,0.09), rgba(0,48,135,0.09)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.75rem; color: var(--red); transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--red), var(--blue)); color: white; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 18px; }
.service-card a { color: var(--red); font-weight: 600; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 5px; }
.service-card a:hover { gap: 8px; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 52px; height: 52px; background: rgba(200,16,46,0.09); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { font-size: 1.0625rem; margin-bottom: 7px; line-height: 1.3; }
.feature-text p { font-size: 0.9375rem; line-height: 1.7; }

/* ===== SUPPORT BANNER ===== */
.support-banner { background: linear-gradient(135deg, var(--red), var(--red-dark)); padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.support-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.support-banner h2 { color: var(--white); font-size: clamp(1.625rem, 3.5vw, 2.25rem); margin-bottom: 12px; line-height: 1.2; }
.support-banner p { color: rgba(255,255,255,0.85); font-size: 1.0625rem; margin-bottom: 28px; }
.support-phones { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.support-phones a { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.14); color: white; padding: 12px 26px; border-radius: 8px; font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.24); letter-spacing: -0.01em; }
.support-phones a:hover { background: rgba(255,255,255,0.24); color: white; }

/* ===== ROUTES ===== */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.route-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.route-card-header { background: linear-gradient(135deg, var(--blue), var(--blue-light)); padding: 22px 24px; color: white; display: flex; align-items: center; gap: 12px; }
.route-icon { font-size: 1.875rem; }
.route-card-header h3 { font-size: 1.0625rem; color: white; letter-spacing: -0.01em; line-height: 1.25; }
.route-card-header span { font-size: 0.75rem; font-weight: 500; opacity: 0.72; margin-top: 2px; }
.route-card-body { padding: 22px 24px; }
.route-card-body p { font-size: 0.9375rem; margin-bottom: 16px; line-height: 1.7; }
.route-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.route-tag { background: var(--light-gray); color: var(--text-light); padding: 4px 11px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.01em; }

/* ===== NETWORK ===== */
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.network-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.network-card h3 { font-size: 1.25rem; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.network-card h3 i { color: var(--red); }
.location-list li { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--light-gray); font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.location-list li:last-child { border-bottom: none; }
.location-list li i { color: var(--blue); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--light-gray); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-full .gallery-item { aspect-ratio: 4/3; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--blue-dark), var(--blue) 60%, var(--blue-light)); padding: var(--section-pad) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,16,46,0.13) 0%, transparent 60%); }
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 36px; font-size: 1.0625rem; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&q=60') center/cover; opacity: 0.07; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(1.875rem, 4vw, 2.625rem); margin-bottom: 14px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

/* ===== CONTENT ===== */
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; align-items: start; }
.content-body h2 { font-size: clamp(1.625rem, 3vw, 2rem); margin-bottom: 18px; line-height: 1.2; }
.content-body h3 { font-size: 1.25rem; margin: 34px 0 13px; color: var(--blue); }
.content-body p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.1rem; }
.content-body ul { list-style: none; margin: 0 0 24px; }
.content-body ul li { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--light-gray); font-size: 1rem; color: var(--text-light); line-height: 1.65; }
.content-body ul li:last-child { border-bottom: none; }
.content-body ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--red); font-size: 0.7rem; margin-top: 5px; flex-shrink: 0; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); }
.sidebar-card h4 { font-size: 1.0625rem; color: var(--blue); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.contact-info-list li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.9375rem; color: var(--text-light); line-height: 1.5; }
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list li i { color: var(--red); width: 16px; margin-top: 3px; }
.contact-info-list li a { color: var(--text-light); }
.contact-info-list li a:hover { color: var(--red); }
.service-links-list { display: flex; flex-direction: column; gap: 2px; }
.service-links-list a { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 6px; font-size: 0.9375rem; font-weight: 500; color: var(--text); transition: var(--transition); }
.service-links-list a:hover { background: rgba(200,16,46,0.07); color: var(--red); padding-left: 16px; }
.service-links-list a i { color: var(--red); width: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 16px; background: var(--off-white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); }
.contact-card-icon { width: 50px; height: 50px; background: var(--red); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; }
.contact-card-text h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-card-text p, .contact-card-text a { font-size: 0.9375rem; color: var(--text-light); display: block; line-height: 1.6; }
.contact-card-text a:hover { color: var(--red); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form-card h3 { font-size: 1.375rem; margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.9375rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== ABOUT ===== */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); }
.value-card .value-icon { font-size: 2.25rem; margin-bottom: 16px; display: block; }
.value-card h4 { font-size: 1.0625rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9375rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.75; margin: 16px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.09); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.72); font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: white; }
.footer h4 { font-family: var(--font-heading); color: white; font-size: 0.8125rem; font-weight: 700; margin-bottom: 22px; padding-bottom: 11px; border-bottom: 2px solid var(--red); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.62); display: flex; align-items: center; gap: 8px; line-height: 1.5; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.55rem; color: var(--red); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 13px; font-size: 0.9375rem; line-height: 1.55; }
.footer-contact li i { color: var(--gold); width: 16px; margin-top: 3px; }
.footer-contact li a { color: rgba(255,255,255,0.62); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== FLOATING ===== */
.floating-call { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.floating-call a { display: flex; align-items: center; gap: 10px; background: var(--red); color: white; padding: 13px 22px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.03em; box-shadow: 0 6px 24px rgba(200,16,46,0.45); animation: pulse 2s infinite; }
.floating-call a:hover { background: var(--red-dark); color: white; animation: none; }
.floating-whatsapp a { background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.38); }
.floating-whatsapp a:hover { background: #20b858; }
@keyframes pulse { 0%, 100% { box-shadow: 0 6px 24px rgba(200,16,46,0.45); } 50% { box-shadow: 0 6px 36px rgba(200,16,46,0.68); } }

/* ===== THANK YOU ===== */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.thankyou-card { background: white; border-radius: var(--radius-lg); padding: 64px 52px; box-shadow: var(--shadow-lg); max-width: 580px; border: 1px solid var(--border); }
.thankyou-icon { font-size: 4rem; color: #1db954; margin-bottom: 22px; }
.thankyou-card h1 { font-size: clamp(1.875rem, 4vw, 2.375rem); margin-bottom: 16px; color: var(--blue); }
.thankyou-card p { font-size: 1.0625rem; margin-bottom: 28px; }

/* ===== ROUTE STATS BAR ===== */
.route-stats-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 18px 0; }
.route-stats-inner { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.route-stat { display: flex; align-items: center; gap: 10px; padding: 10px 32px; border-right: 1px solid var(--border); }
.route-stat:last-child { border-right: none; }
.route-stat-icon { font-size: 1.5rem; color: var(--red); }
.route-stat-text strong { display: block; font-family: var(--font-heading); font-size: 1.125rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; line-height: 1.1; }
.route-stat-text span { font-size: 0.8125rem; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== UTILITIES ===== */
.divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--red), var(--blue)); border-radius: 2px; margin: 14px auto 0; }
.badge-red { background: var(--red); color: white; padding: 3px 10px; border-radius: 50px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.375rem; }
  :root { --section-pad: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .enquiry-card { max-width: 500px; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.125rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }
  body { font-size: 1rem; }
  :root { --section-pad: 52px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: var(--shadow-lg); padding: 16px; gap: 2px; z-index: 999; }
  .nav-menu.open > li > a { padding: 12px 14px; border-radius: 6px; font-size: 0.9375rem; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--off-white); border-radius: 6px; margin-top: 4px; display: none; }
  .nav-menu.open li.open .dropdown-menu { display: block; }
  .nav-cta.open { display: block; padding: 10px; }
  .hero { min-height: auto; padding: 52px 0 44px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.75rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .route-stat { padding: 10px 18px; }
  .contact-form-card { padding: 26px 20px; }
  .thankyou-card { padding: 44px 28px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 14px; }
  .stat-num { font-size: 1.625rem; }
  .btn { padding: 13px 24px; font-size: 0.8125rem; }
  .route-stats-inner { flex-direction: column; align-items: center; }
  .route-stat { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .route-stat:last-child { border-bottom: none; }
}
