:root {
  --gac-red: #e52d27;
  --gac-dark: #2c2c2c;
  --gac-muted: #777;
  --gac-bg: #eee;
  --gac-white: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  color: #4c4c4c;
  background: var(--gac-bg);
  line-height: 1.7;
}

a {
  color: var(--gac-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.gacbud-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

body.is-inner .gacbud-topbar {
  position: sticky;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.gacbud-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.gacbud-brand {
  display: inline-flex;
  align-items: center;
  color: var(--gac-dark);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.gacbud-logo {
  max-height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.gacbud-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gacbud-menu a {
  display: inline-block;
  padding: 8px 2px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.is-inner .gacbud-menu a {
  color: #333;
  text-shadow: none;
}

.gacbud-menu a:hover,
.gacbud-menu .active a {
  color: var(--gac-red);
  text-decoration: none;
}

body.is-home .gacbud-menu a:hover,
body.is-home .gacbud-menu .active a {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.gacbud-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 110px 0 80px;
  background:
    linear-gradient(rgba(40, 40, 40, 0.55), rgba(20, 20, 20, 0.45)),
    var(--gac-hero-image) center / cover no-repeat;
}

.gacbud-hero-inner {
  max-width: 820px;
}

.gacbud-hero h1 {
  margin: 0 0 18px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gacbud-hero-lines {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  opacity: 0.95;
}

.gacbud-hero-lines li {
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border: 0;
  border-radius: 30px;
  background: var(--gac-red);
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: #c9221c;
  box-shadow: 0 8px 18px rgba(229, 45, 39, 0.35);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.main {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.main-raised {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  width: calc(100% - 24px);
}

.section {
  padding: 48px 28px;
}

.section + .section {
  border-top: 1px solid #eee;
}

.section h1,
.section h2,
.gacbud-content-home > h2 {
  margin-top: 0;
  color: var(--gac-dark);
  font-family: "Roboto Slab", "Roboto", serif;
  font-weight: 700;
  text-align: center;
}

.gacbud-content a {
  color: var(--gac-red);
  font-weight: 500;
}

.gacbud-content h2,
.gacbud-content h3 {
  margin: 1.4em 0 0.7em;
  font-family: "Roboto Slab", "Roboto", serif;
  color: var(--gac-dark);
}

.gacbud-content-home > h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.gacbud-content-home > p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #777;
}

.gacbud-seo-copy {
  margin-bottom: 28px;
}

.gacbud-seo-copy p,
.gacbud-seo-copy li {
  color: #555;
  font-size: 1.02rem;
}

.gacbud-seo-copy h2 {
  text-align: left;
  font-size: 1.35rem;
  margin-top: 1.4em;
}

.gacbud-seo-copy ul {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}

.gacbud-content p {
  margin: 0 0 1em;
}

.gacbud-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px auto 28px;
  max-width: 900px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8e8;
}

.gacbud-stats > div {
  text-align: center;
  padding: 8px;
}

.gacbud-stats strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #bdbdbd;
  line-height: 1.1;
  margin-bottom: 8px;
}

.gacbud-stats span {
  color: var(--gac-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.gacbud-content figure {
  margin: 0 0 8px;
  text-align: center;
}

.gacbud-content figure img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.gacbud-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.gacbud-offer-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.gacbud-offer-item figure {
  margin: 0 0 12px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gacbud-offer-item img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.gacbud-offer-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.gacbud-offer-item p {
  margin: 0;
  color: var(--gac-muted);
  font-size: 0.92rem;
}

.gacbud-home-offer {
  margin-top: 8px;
}

.gacbud-home-offer > a:not(.gacbud-tile) {
  display: none;
}

.gacbud-tile-section {
  margin: 28px 0 36px;
}

.gacbud-tile-section > h3 {
  margin: 0 0 18px;
  text-align: left;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  border: 0;
  padding: 0;
}

.gacbud-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gacbud-tile {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  margin: 0 !important;
  padding: 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)),
    var(--gac-offer-tile) center / cover no-repeat !important;
  text-decoration: none !important;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gacbud-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease;
}

.gacbud-tile span {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 90%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.78);
  color: #2c2c2c;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.gacbud-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none !important;
}

.gacbud-tile:hover::before {
  background: rgba(0, 0, 0, 0.08);
}

.gacbud-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 24px;
}

.gacbud-services a,
.gacbud-service-link {
  display: inline-block;
  margin: 0;
  padding: 10px 16px;
  border-radius: 3px;
  background: #f5f5f5;
  border: 1px solid #e6e6e6;
  color: var(--gac-red) !important;
  text-decoration: none !important;
  font-weight: 500;
}

.gacbud-services a:hover,
.gacbud-service-link:hover {
  background: #fff0f0;
  border-color: #f5c2c2;
}

.gacbud-content iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  margin: 16px 0;
}

.gacbud-location-grid,
.gacbud-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gacbud-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
}

.gacbud-card h3 {
  margin: 0 0 10px;
  font-family: "Roboto Slab", "Roboto", serif;
}

.gacbud-card p {
  color: var(--gac-muted);
  margin: 0 0 16px;
}

.gacbud-footer {
  background: var(--gac-dark);
  color: #fff;
  padding: 48px 0;
  margin-top: 48px;
}

.gacbud-footer a {
  color: #fff;
}

.gacbud-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

@media (max-width: 992px) {
  .gacbud-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .gacbud-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .gacbud-menu {
    justify-content: flex-start;
  }

  .gacbud-hero {
    min-height: 62vh;
    padding: 100px 0 70px;
  }

  .gacbud-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .gacbud-tile-grid {
    grid-template-columns: 1fr;
  }
}
