/* ==========================================================================
   GLOBAL BRANDING AND DESIGN SYSTEM (NAVICORE GLOBAL)
   ========================================================================== */

:root {
  --navy: #0A2036;
  --navy-2: #0F2D48;
  --teal: #123B5C;
  --orange: #E8672C;
  --orange-2: #F49A4C;
  --paper: #F6F5F1;
  --paper-2: #EFEDE6;
  --ink: #111B26;
  --muted: #5B6B78;
  --line: #DEDAD0;
  --white: #FFFFFF;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Archivo Expanded', sans-serif;
  margin: 0;
  line-height: 1.05;
}

/* ==========================================================================
   COMMON REUSABLE DESIGN PATTERNS
   ========================================================================== */

/* Section Subheadings */
.eyebrow {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-orange {
  background: var(--orange);
  color: white;
  color: #fff;
}

.btn-orange:hover {
  background: #d4581e;
}

.btn-outline {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--teal);
}

.btn-line {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: #fff;
}

/* Scroll Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Global Section Layouts */
section {
  padding: 100px 0;
}

.section-tight {
  padding-top: 60px;
}

/* ==========================================================================
   TOPBAR NAVIGATION INFORMATION STRIP
   ========================================================================== */

.topbar {
  background: var(--navy);
  color: #cfd8e0;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  flex-wrap: wrap;
}

.topbar-info {
  display: flex;
  gap: 22px;
  align-items: center;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-info svg {
  width: 13px;
  height: 13px;
  stroke: var(--orange-2);
  flex-shrink: 0;
}

.topbar-lang {
  font-family: 'Space Mono', monospace;
  letter-spacing: .1em;
  color: #9fb0bd;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */

header.site {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
}

.logo img {
  height: 90px;
  width: 90px;
  object-fit: contain;
}

nav.main {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.main>ul {
  display: flex;
  gap: 30px;
}

nav.main>ul>li {
  position: relative;
  padding: 10px 0;
}

nav.main>ul>li>a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
}

nav.main>ul>li>a svg {
  width: 10px;
  height: 10px;
  transition: transform .2s;
}

nav.main>ul>li:hover>a {
  color: var(--orange);
}

nav.main>ul>li:hover>a svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 18px 40px rgba(10, 32, 54, .14);
  border-top: 3px solid var(--orange);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
}

nav.main>ul>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.dropdown li a:hover {
  background: var(--paper);
  color: var(--orange);
  padding-left: 26px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ==========================================================================
   HOMEPAGE - HERO SLIDER
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 32, 54, .94) 10%, rgba(10, 32, 54, .72) 45%, rgba(10, 32, 54, .35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 100px 0;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: #dbe3ea;
  max-width: 520px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(14px);
}

.hero-content.reveal .hero-eyebrow,
.hero-content.reveal .hero-title,
.hero-content.reveal .hero-text,
.hero-content.reveal .hero-btnrow {
  animation: riseIn .7s ease forwards;
}

.hero-content.reveal .hero-title {
  animation-delay: .12s;
}

.hero-content.reveal .hero-text {
  animation-delay: .22s;
}

.hero-content.reveal .hero-btnrow {
  animation-delay: .32s;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btnrow {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: none;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  background: var(--orange);
}

.hero-route {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 340px;
  height: 340px;
  z-index: 1;
  opacity: .25;
  pointer-events: none;
}

/* ==========================================================================
   HOMEPAGE - SERVICE QUICK STRIP
   ========================================================================== */

.services-strip {
  background: var(--paper);
  position: relative;
  margin-top: -1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: 0 24px 60px rgba(10, 32, 54, .1);
  transform: translateY(-56px);
  margin-bottom: -32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  background: var(--navy);
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-card:hover .svc-icon {
  background: var(--orange);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s ease;
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  transition: stroke .25s;
}

.service-card:hover .svc-icon svg {
  stroke: #fff;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
  transition: color .25s;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  transition: color .25s;
}

/* ==========================================================================
   HOMEPAGE - ABOUT COMPANY OVERVIEW BLOCK
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius);
}

.about-media .badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--orange);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  font-family: 'Archivo Expanded', sans-serif;
  box-shadow: 0 20px 40px rgba(232, 103, 44, .35);
}

.about-media .badge strong {
  display: block;
  font-size: 30px;
}

.about-media .badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Space Mono', monospace;
}

.about-title {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 20px;
  color: var(--navy);
  font-weight: 800;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15.5px;
  margin: 0 0 18px;
}

.about-btns {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ==========================================================================
   HOMEPAGE - WHY CHOOSE NAVICORE GLOBAL
   ========================================================================== */

.why {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(232, 103, 44, .18), transparent 45%);
}

.why .wrap {
  position: relative;
}

.why-head {
  max-width: 600px;
  margin-bottom: 60px;
}

.why-head .eyebrow {
  margin-bottom: 16px;
}

.why-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange-2);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-item p {
  margin: 0;
  color: #b7c4cf;
  font-size: 14.5px;
  line-height: 1.7;
}

.why-media {
  position: relative;
}

.why-media img {
  border-radius: var(--radius);
}

.why-media::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: -1;
}

/* ==========================================================================
   HOMEPAGE - QUICK QUOTE ESTIMATION FORM
   ========================================================================== */

.quote {
  background: linear-gradient(120deg, var(--orange) 0%, #d4581e 100%);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.quote-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 14px 0 18px;
}

.quote-head p {
  color: rgba(255, 255, 255, .9);
  line-height: 1.75;
  font-size: 15px;
}

.quote-form {
  background: #fff;
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Archivo', sans-serif;
}

.form-field select,
.form-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
}

.form-field select:focus,
.form-field input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.quote-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ==========================================================================
   HOMEPAGE - OPERATIONAL COUNTERS
   ========================================================================== */

.facts {
  background: var(--paper-2);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.fact {
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: none;
}

.fact strong {
  display: block;
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 44px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
}

.fact strong span {
  color: var(--orange);
}

.fact small {
  display: block;
  margin-top: 10px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11.5px;
  color: var(--muted);
}

/* ==========================================================================
   HOMEPAGE - MAP DISPLAY & HEADQUARTERS ADDRESS
   ========================================================================== */

.map-section .wrap {
  padding: 0;
  max-width: 100%;
}

.map-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.map-info {
  background: var(--navy);
  color: #fff;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.map-info h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.map-info .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.map-info .row svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-info .row a,
.map-info .row span {
  color: #cfd8e0;
  font-size: 15px;
  line-height: 1.6;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ==========================================================================
   GLOBAL SUBPAGE TEMPLATES (ABOUT & CONTACT COVERS)
   ========================================================================== */

.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(232, 103, 44, 0.15), transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.1;
  color: var(--white);
}

.page-header .breadcrumbs-description {
  font-size: 15.5px;
  color: #cfd8e0;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-page-section {
  padding: 80px 0;
}

.page-callout {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius);
  margin: 60px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 32, 54, 0.15);
}

.page-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(232, 103, 44, 0.12), transparent 45%);
  pointer-events: none;
}

.page-callout .wrap-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.page-callout .callout-info {
  max-width: 600px;
}

.page-callout h4 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 22px;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.2;
}

.page-callout p {
  color: #cfd8e0;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.page-callout .btn {
  flex-shrink: 0;
}

/* ==========================================================================
   CONTACT PAGE - LOCAL BRANCHES & INQUIRY FORM
   ========================================================================== */

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(10, 32, 54, 0.04);
  transition: all 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(10, 32, 54, 0.08);
  border-color: var(--orange-2);
}

.office-card h4 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 18px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
  display: inline-block;
}

.office-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.office-card .info-item:last-child {
  margin-bottom: 0;
}

.office-card .info-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-card .info-item a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}

.office-card .info-item a:hover {
  color: var(--orange);
}

.contact-form-section {
  background: var(--paper-2);
  padding: 80px 0;
}

.contact-form-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-card h2 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 26px;
  text-align: center;
}

.contact-form-card h3.form-section-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
  margin: 24px 0 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  grid-column: 1 / -1;
}

.contact-grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-grid-form .form-field {
  display: flex;
  flex-direction: column;
}

.contact-grid-form .form-field.full-width {
  grid-column: 1 / -1;
}

.contact-grid-form label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-grid-form input,
.contact-grid-form select,
.contact-grid-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: all 0.2s ease;
}

.contact-grid-form input:focus,
.contact-grid-form select:focus,
.contact-grid-form textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 103, 44, 0.1);
}

.contact-grid-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-grid-form .submit-btn-row {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.contact-grid-form .submit-btn-row .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   SITE FOOTER (NEWSLETTER & GLOBAL DIRECTORY)
   ========================================================================== */

footer.site {
  background: var(--navy);
  color: #b7c4cf;
  padding: 80px 0 0;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-newsletter .newsletter-info {
  max-width: 500px;
}

.footer-newsletter h3 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.2;
}

.footer-newsletter p {
  color: #b7c4cf;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-newsletter .newsletter-form {
  display: flex;
  flex: 1;
  max-width: 480px;
  position: relative;
}

.footer-newsletter .newsletter-form input {
  width: 100%;
  padding: 16px 140px 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter .newsletter-form input:focus {
  border-color: var(--orange-2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(244, 154, 76, 0.15);
}

.footer-newsletter .newsletter-form input::placeholder {
  color: #8c9ba5;
}

.footer-newsletter .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  padding: 0 24px;
  border-radius: 25px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-newsletter .newsletter-form button:hover {
  background: #d4581e;
}

.footer-newsletter .newsletter-form button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.footer-newsletter .newsletter-form button:hover svg {
  transform: translateX(3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 10vw;
  width: 10vw;
  object-fit: contain;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 22px;
  font-family: 'Archivo', sans-serif;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #b7c4cf;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--orange-2);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.75;
  color: #a5b3bf;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom ul {
  display: flex;
  gap: 22px;
}

.footer-bottom ul li a:hover {
  color: #fff;
}

/* ==========================================================================
   CONSOLIDATED RESPONSIVE STYLES (MEDIA OVERRIDES)
   ========================================================================== */

/* Tablet & Smaller Desktop breakpoints */
@media (max-width: 980px) {

  .about-grid,
  .why-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .why-media {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .footer-about {
    grid-column: 1 / -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(0);
    margin: 40px 0;
    box-shadow: none;
  }

  .service-card {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2) {
    border-right: none;
  }

  .service-card:nth-child(4) {
    border-right: none;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact {
    border-bottom: 1px solid var(--line);
  }
}

/* Mobile Nav Activation breakpoint */
@media (max-width: 820px) {
  nav.main {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 26px 26px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
    transition: right .3s ease;
    z-index: 60;
    overflow-y: auto;
  }

  nav.main.open {
    right: 0;
  }

  nav.main>ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  nav.main>ul>li {
    width: 100%;
    padding: 0;
  }

  nav.main>ul>li>a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 14px;
  }

  nav.main>ul>li.open .dropdown {
    display: block;
  }

  .burger {
    display: block;
  }

  .header-cta .btn-navy {
    display: none;
  }

  .topbar .wrap {
    justify-content: center;
    height: auto;
    padding: 8px 20px;
    text-align: center;
  }

  .topbar-lang {
    display: none;
  }
}

/* Medium Subpage Widget Scaling */
@media (max-width: 768px) {
  .page-callout {
    padding: 40px 24px;
  }

  .page-callout .wrap-callout {
    flex-direction: column;
    text-align: center;
  }
}

/* General Mobile breakpoint */
@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2n) {
    border-right: none;
  }

  .about-media .badge {
    left: 12px;
    bottom: -20px;
    padding: 14px 18px;
  }

  .about-media .badge strong {
    font-size: 22px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .footer-newsletter .newsletter-form {
    max-width: 100%;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-grid-form {
    grid-template-columns: 1fr;
  }
}

/* Compact Mobile breakpoint */
@media (max-width: 480px) {
  .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .footer-newsletter .newsletter-form input {
    padding: 16px 20px;
    border-radius: var(--radius);
  }

  .footer-newsletter .newsletter-form button {
    position: static;
    width: 100%;
    justify-content: center;
    padding: 16px;
    border-radius: var(--radius);
  }
}