* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #122d41;
  --secondary-color: #2c5aa0;
  --accent-color: #c08929;
  --light-gray: #f5f5f5;
  --text-color: #333;
  --text-light: #666;
  --border-color: #ddd;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Top Section of Header */
.header-top-section {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  max-width: 70px;
  width: auto;
  object-fit: contain;
}

.logo-text-top h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.logo-text-top p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-style: italic;
}

/* Contact Info in Top Section */
.contact-info-top {
  display: flex;
  gap: 25px;
  flex: 1;
  justify-content: flex-start;
  padding-left: 20px;
}

.phone-info,
.email-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Quote Button in Top Section */
.quote-btn-top {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.quote-btn-top:hover {
  background: #b89455;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navigation Bar */
.navbar {
  background: var(--white);
  padding: 0;
}

.navbar .container {
  padding: 0 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links li {
  flex: 1;
  text-align: center;
  border-right: 1px solid #e8e8e8;
}

.nav-links li:last-child {
  border-right: none;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding: 18px 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: rgba(201, 165, 102, 0.05);
}

/* Large Quote Button (in hero section) */
.quote-btn.large {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 15px 35px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quote-btn.large:hover {
  background: #b89455;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(26, 58, 82, 0.5) 0%,
      rgba(26, 58, 82, 0.85) 100%
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  padding: 250px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.learn-more:hover {
  color: #b89455;
}

/* Resources Section */
.resources {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--white);
}

.resources h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.resources h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent-color);
}

.search-filter {
  max-width: 800px;
  margin: 0 auto 50px;
}

.search-box {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.search-box::placeholder {
  color: var(--text-light);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid var(--accent-color);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-color);
  color: var(--white);
}

.resources-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.article-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.article-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 20px;
}

.article-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.article-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.article-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-light);
}

.read-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.read-more:hover {
  color: #b89455;
}

.view-all {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.view-all:hover {
  color: #b89455;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.about h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.values-list li {
  padding: 12px;
  background: var(--light-gray);
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
  color: var(--text-color);
}

.values-list strong {
  color: var(--primary-color);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(26, 58, 82, 0.2);
}

.stat h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.stat p {
  font-size: 14px;
  opacity: 0.95;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background: var(--light-gray);
}

.industries h2 {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.industry-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.industry-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.industry-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.message {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact h2 {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-form-wrapper h3,
.contact-info-box h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201, 165, 102, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--secondary-color);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-box {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
}

.info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item h4 {
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.info-item p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
}

.info-item a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.info-item a:hover {
  color: #b89455;
}

.hours {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
  font-style: italic;
}

.subtitle {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--accent-color);
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.subscribe-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-box h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  background: var(--white);
}

.subscribe-form input::placeholder {
  color: var(--text-light);
}

.subscribe-btn {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: #b89455;
}

.featured-resource {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-resource h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.featured-resource img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.featured-resource h5 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.featured-resource p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

.download-guide {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.download-guide:hover {
  color: #f0d9b5;
}

/* Footer */
.footer {
  background: #0f2438;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 14px;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Navbar inner layout ---- */
.navbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

/* Nav list fills full width on desktop */
.nav-links {
  flex: 1;
}

/* Floating hamburger button — hidden on desktop */
.hamburger {
  display: none;
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 1100;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  transition: background 0.2s;
}

.hamburger:hover { background: var(--secondary-color); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
}
.nav-overlay.active { display: block; }

/* ---- Responsive Design ---- */
@media (max-width: 768px) {
  /* Header top bar */
  .header-top-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-info-top {
    order: 3;
    width: 100%;
    padding-left: 0;
    gap: 12px;
    justify-content: flex-start;
  }

  .quote-btn-top {
    order: 2;
  }

  /* Show floating hamburger */
  .hamburger { display: flex; }

  /* Floating side drawer — slides in from the right */
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 270px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    flex-direction: column;
    z-index: 1080;
    overflow-y: auto;
    padding-top: 72px;
    transition: right 0.3s ease;
    display: flex;
  }

  .nav-links.open { right: 0; }

  .nav-links li {
    flex: unset;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    padding: 16px 24px;
    font-size: 15px;
  }

  /* Rest of responsive styles */
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .resources-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industry-card {
    padding: 25px;
  }

  .stat {
    padding: 20px;
  }

  .stat h4 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  /* Header Mobile */
  .logo-text-top h1 {
    font-size: 16px;
  }

  .phone-info,
  .email-info {
    font-size: 12px;
    gap: 4px;
  }

  .quote-btn-top {
    padding: 9px 18px;
    font-size: 12px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero {
    padding: 50px 20px;
  }

  .service-card {
    padding: 25px;
  }

  .resources h2 {
    font-size: 24px;
  }

  .resources h3 {
    font-size: 20px;
  }
}

/* =============================================
   Utility Grid Classes
   ============================================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Asymmetric 1fr/2fr layout (e.g. address + map) */
.grid-offset {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* =============================================
   Page Hero Banner
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* =============================================
   Shared Section Padding
   ============================================= */
.section-pad {
  padding: 80px 0;
}

/* =============================================
   Tablet Breakpoint (≤ 960px)
   ============================================= */
@media (max-width: 960px) {
  /* 4-col → 2-col on tablet */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Asymmetric → stacked on tablet */
  .grid-offset {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .resources-content {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Mobile Breakpoint (≤ 768px) — enhance existing
   ============================================= */
@media (max-width: 768px) {
  /* All utility grids collapse to single column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Section padding reduction */
  .section-pad {
    padding: 50px 0;
  }

  /* Hero: remove fixed bg (broken on iOS) and reduce height */
  .hero {
    background-attachment: scroll;
    padding: 80px 20px;
  }

  /* Page hero banner */
  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 15px;
  }

  /* Header top bar: stack on very small screens */
  .logo-img {
    height: 50px;
    max-width: 50px;
  }

  /* Contact methods 3-col grid fix via .grid-3 */
  /* Office section grid-offset already handled above */

  /* Admin sidebar responsive */
  .admin-wrapper {
    flex-direction: column;
  }
}

/* =============================================
   Small Mobile (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .section-pad {
    padding: 35px 0;
  }

  .page-hero {
    padding: 30px 0;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .page-hero p {
    font-size: 14px;
  }

  /* Header: hide email on very small screens */
  .email-info {
    display: none;
  }

  .contact-info-top {
    gap: 8px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 22px;
  }
}
