/* 
   555 Scotland Ltd - Core Design System & Stylesheet
   Steder.com-inspired Corporate Logistics Design System
   High-trust, ultra-clean, service-led and quote-focused
*/

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

:root {
  /* Brand Color Palette - Steder Style */
  --navy: #0b233f;            /* Deep serious corporate navy */
  --navy-light: #16365c;      /* Navy accent for interactive cards */
  --navy-dark: #061324;       /* Extra deep navy for footer/dark bands */
  --blue: #1f5d8c;            /* Solid corporate blue for details and subtitle tags */
  --blue-accent: #2f75a8;     /* Lighter blue accent */
  --blue-light: #f0f5fa;      /* Ice-blue background tint */
  --light-grey: #f3f6f9;      /* Clean background grey for alternating sections */
  --border-grey: #e2e8f0;     /* Slate-grey border for structured grids */
  --text-dark: #1f2937;       /* Serious, highly readable charcoal/black for text */
  --text-muted: #4b5563;      /* Muted charcoal for descriptions */
  --text-light: #9ca3af;      /* Secondary light text */
  --orange: #f58220;          /* Warning safety orange for primary call-to-actions */
  --orange-hover: #d76d13;    /* Rich warning orange for buttons hover */
  --white: #ffffff;
  
  /* Fonts & Weights */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  
  /* Layout Metrics */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(11, 35, 63, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(11, 35, 63, 0.08);
  --shadow-lg: 0 12px 30px -4px rgba(11, 35, 63, 0.12);
  --radius: 3px;              /* Professional sharp aesthetics, minimal roundness */
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* offset for sticky header */
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Top Utility Bar */
.topbar {
  background-color: var(--navy-dark);
  color: #d8e5ef;
  font-size: 13px;
  padding: 10px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar strong {
  color: var(--white);
  font-weight: 600;
}

.topbar-info {
  display: flex;
  gap: 24px;
}

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

.topbar-info-item svg {
  width: 14px;
  height: 14px;
  fill: var(--orange);
}

/* Sticky Main Navigation Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-grey);
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(11, 35, 63, 0.03);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

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

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.logo-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--blue);
}

/* Call to Actions Buttons */
.quote-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(245, 130, 32, 0.15);
  transition: var(--transition);
}

.quote-btn:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(245, 130, 32, 0.25);
  color: var(--white);
}

.quote-btn:active {
  transform: translateY(0);
}

.secondary-btn {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.secondary-btn:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background-color: var(--light-grey);
  border-bottom: 1px solid var(--border-grey);
  min-height: calc(100vh - 120px);
}

.hero-copy {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--orange);
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-copy p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-point {
  background: var(--white);
  border-left: 4px solid var(--blue);
  padding: 16px;
  font-size: 13px;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--border-grey);
  border-right: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  transition: var(--transition);
}

.hero-point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--orange);
}

.hero-point strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 35, 63, 0.4) 0%, rgba(11, 35, 63, 0.1) 100%);
}

.image-note {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(11, 35, 63, 0.95);
  color: var(--white);
  padding: 24px;
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(5px);
}

.image-note strong {
  display: block;
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 6px;
  color: var(--white);
}

.image-note p {
  color: #d8e5ef;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Sections Structure */
section {
  padding: 90px 8%;
  border-bottom: 1px solid var(--border-grey);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head-title {
  max-width: 720px;
}

.section-head h2 {
  font-size: 38px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.8px;
}

.section-head-desc {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.kicker {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 12px;
  display: block;
}

/* Intro Band / About */
.intro-band {
  background-color: var(--white);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-grey);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pillar {
  padding: 36px;
  border-right: 1px solid var(--border-grey);
  transition: var(--transition);
}

.pillar:last-child {
  border-right: 0;
}

.pillar:hover {
  background-color: var(--light-grey);
}

.pillar h3 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-icon {
  color: var(--blue);
  display: flex;
  align-items: center;
}

.pillar p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Solutions / Services Section */
.solutions {
  background-color: var(--light-grey);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution {
  background: var(--white);
  border: 1px solid var(--border-grey);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.solution:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-accent);
}

.solution-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: var(--navy);
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.solution:hover .solution-image {
  transform: scale(1.05);
}

.solution-top {
  padding: 28px;
}

.solution-top span {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.solution h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.solution p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.readmore {
  padding: 0 28px 28px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.solution:hover .readmore {
  color: var(--orange);
  gap: 10px;
}

/* Facilities Section */
.facility-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.facility-image-container {
  position: relative;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
}

.facility-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.facility-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 35, 63, 0.95);
  color: var(--white);
  padding: 20px;
  border-left: 4px solid var(--orange);
  backdrop-filter: blur(5px);
}

.facility-image-overlay strong {
  font-family: var(--font-display);
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}

.facility-image-overlay p {
  color: #d8e5ef;
  font-size: 12px;
  margin: 0;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facility-item {
  border: 1px solid var(--border-grey);
  padding: 14px 18px;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.facility-item:hover {
  border-color: var(--blue-accent);
  background-color: var(--blue-light);
  transform: translateX(3px);
}

.facility-item svg {
  color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Why Section */
.why {
  background-color: var(--navy);
  color: var(--white);
}

.why .section-head h2 {
  color: var(--white);
}

.why .section-head p {
  color: #d8e5ef;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.why-card {
  background-color: var(--navy);
  padding: 32px 24px;
  min-height: 230px;
  transition: var(--transition);
}

.why-card:hover {
  background-color: var(--navy-light);
}

.why-card span {
  color: var(--orange);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}

.why-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 19px;
}

.why-card p {
  margin: 0;
  color: #d8e5ef;
  font-size: 13.5px;
  line-height: 1.5;
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry {
  background: var(--light-grey);
  border: 1px solid var(--border-grey);
  padding: 22px 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.industry:hover {
  background-color: var(--white);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--blue);
}

.industry svg {
  width: 24px;
  height: 24px;
  fill: var(--blue);
  transition: var(--transition);
}

.industry:hover svg {
  fill: var(--orange);
}

/* Gallery Section */
.gallery {
  background-color: var(--light-grey);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 200px;
  gap: 16px;
}

.photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  background-color: var(--navy);
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  z-index: 1;
}

.photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(11, 35, 63, 0.85) 100%);
  z-index: 2;
  transition: var(--transition);
}

.photo span {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.photo:hover img {
  transform: scale(1.05);
}

.photo:hover:after {
  background: linear-gradient(transparent 10%, rgba(11, 35, 63, 0.9) 100%);
}

.photo.big {
  grid-row: span 2;
}

/* Mini Case Studies Section */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case {
  border: 1px solid var(--border-grey);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-accent);
}

.case-img-container {
  height: 170px;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.case:hover .case-img {
  transform: scale(1.05);
}

.case-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--orange);
}

.case-body {
  padding: 24px;
}

.case h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 20px;
}

.case-row {
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13.5px;
}

.case-row strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Testimonials - Hidden initially but structure ready */
.testimonials {
  background-color: var(--white);
}

.hidden {
  display: none !important;
}

/* Quote Section & Interactive Form */
.quote-section {
  background-color: var(--light-grey);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.contact-panel {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.contact-panel-top h2 {
  color: var(--white);
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.contact-panel-top p {
  color: #d8e5ef;
  font-size: 15px;
  line-height: 1.6;
}

.contact-details {
  margin-top: 40px;
}

.contact-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-detail:last-child {
  padding-bottom: 0;
}

.contact-detail svg {
  color: var(--orange);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-detail a:hover {
  color: var(--orange);
}

/* Form Styling */
form {
  background: var(--white);
  border: 1px solid var(--border-grey);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-field-wrapper {
  position: relative;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  border-radius: var(--radius);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(31, 93, 140, 0.12);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.submit {
  grid-column: 1 / -1;
  border: 0;
  background-color: var(--orange);
  color: var(--white);
  padding: 16px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.2);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 6px 18px rgba(245, 130, 32, 0.3);
}

.submit:disabled {
  background-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

/* Form success message */
.form-success-message {
  grid-column: 1 / -1;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 16px;
  font-weight: 600;
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 10px;
}

/* FAQ Section */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

details {
  border: 1px solid var(--border-grey);
  background: var(--white);
  padding: 18px 24px;
  transition: var(--transition);
}

details[open] {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-sm);
}

summary {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--blue);
  font-weight: 600;
  transition: var(--transition);
}

details[open] summary::after {
  content: "−";
  color: var(--orange);
}

details p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

/* Footer Section */
footer {
  background-color: var(--navy-dark);
  color: #d8e5ef;
  padding: 60px 8% 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  border-top: 3px solid var(--orange);
}

footer strong {
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  font-size: 17px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

footer p {
  margin: 0;
  color: #c5d4df;
  font-size: 14px;
  line-height: 1.6;
}

footer a {
  color: #c5d4df;
}

footer a:hover {
  color: var(--orange);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-size: 14px;
  display: inline-block;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #9fb0c0;
}

.small-note {
  font-size: 12px;
  color: #8da2b5;
  margin-top: 12px;
  line-height: 1.5;
}

/* Back to Top & Scroll Indicators */
.scroll-indicator-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--orange);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s ease-out;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--orange);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 1180px) {
  h1 {
    font-size: 40px;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 70px 6%;
  }
  .topbar, header, footer {
    padding-left: 6%;
    padding-right: 6%;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 60px 0;
  }
  .hero-image-container {
    min-height: 400px;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--border-grey);
  }
  .pillar:last-child {
    border-bottom: 0;
  }
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facility-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .facility-image-container {
    min-height: 360px;
  }
  .facility-image {
    height: 360px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }
  .photo.big {
    grid-row: span 1;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* Hide default nav for mobile */
  }
  .topbar-info {
    display: none; /* Hide topbar details on small screens */
  }
  .topbar {
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }
  .logo img {
    height: 42px;
  }
  .logo-text {
    font-size: 18px;
  }
  .logo-text small {
    font-size: 9px;
  }
  header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  h1 {
    font-size: 32px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .contact-panel {
    padding: 30px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
