/* ===== VARIABLES ===== */
:root {
  --blue: #0b5485;
  --blue-dark: #073d61;
  --blue-light: #1a6da0;
  --dark: #161616;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #888;
  --text: #333;
  --text-light: #ccc;
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-light); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--blue);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== HEADER (white, like original) ===== */
.site-header {
  background: var(--white);
  padding: 20px 0;
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 80px; }
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}
.header-phone:hover { color: var(--blue); }

/* Hamburger menu */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  transition: 0.3s;
}

/* Nav dropdown (hidden by default, like GoDaddy) */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  min-width: 280px;
  z-index: 200;
  border-top: 3px solid var(--blue);
}
.main-nav.open { display: block; }
.main-nav a {
  display: block;
  padding: 14px 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.main-nav a:hover { background: var(--gray-light); color: var(--blue); }

/* ===== HERO (full image, no overlay) ===== */
.hero {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-white { background: var(--white); }

.section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
}
.section h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.section p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FULL WIDTH IMAGE SECTION (parallax-style) ===== */
.section-image-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-image-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.section-image-banner .banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.section-image-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

/* ===== TWO COLUMN (side by side images) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
.two-col .col { text-align: center; }
.two-col .col img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0;
}
.two-col .col h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

/* ===== SINGLE IMAGE + TEXT SECTION ===== */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}
.content-row img { width: 100%; max-height: 400px; object-fit: contain; border-radius: 0; }
.content-row .text-block h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.content-row .text-block p { margin: 0; text-align: left; }

/* ===== SERVICES LIST ===== */
.services-columns {
  column-count: 3;
  column-gap: 40px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services-columns li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

/* ===== LINK SECTION ===== */
.link-section {
  text-align: center;
  padding: 48px 0;
  background: var(--white);
}
.link-section a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blue);
  text-transform: uppercase;
}
.link-section a:hover { color: var(--blue-dark); }

/* ===== INFO BLOCK (description text) ===== */
.info-block {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
}
.info-block p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 16px;
  color: #444;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 60px 0;
  background: var(--white);
}
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid #ddd;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 40px 0;
  text-align: center;
}
.site-footer p { font-size: 14px; margin-bottom: 8px; color: var(--text-light); max-width: none; }
.site-footer a { color: var(--text-light); }
.site-footer a:hover { color: var(--white); }
.footer-contact { margin-top: 16px; }
.footer-contact p { font-size: 13px; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: var(--gray);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--blue);
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: none;
}

/* ===== VALUES GRID (About) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
}
.value-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text);
}
.value-card p { text-align: center; }

/* ===== EDM GALLERY ===== */
.edm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.edm-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
}
.edm-gallery img:hover { opacity: 0.85; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; }

/* ===== CONTACT GRID (contact page) ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--blue);
}
.contact-info-block p {
  text-align: left;
  margin-bottom: 12px;
}

/* ===== EQUIPMENT GRID ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.equipment-card { text-align: center; }
.equipment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 12px;
}
.equipment-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.equipment-card p { font-size: 13px; }

/* ===== SERVICE CARDS GRID (home + services page) ===== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.service-card-link {
  text-decoration: none;
  color: var(--text);
  display: block;
}
.service-card-item {
  background: var(--gray-light);
  padding: 24px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: 1px solid #eee;
}
.service-card-item:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.service-card-link img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: var(--gray-light);
  padding: 60px 0;
}
.experience-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}
.experience-section h3 {
  text-align: center;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 24px;
}
.experience-section p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 16px;
  color: #444;
  text-align: center;
}

/* ===== HERO CTA OVERLAY ===== */
.hero {
  position: relative;
}
.hero-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ===== FOOTER LINKS (associations) ===== */
.footer-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: underline;
}
.footer-links a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col, .content-row, .contact-grid { grid-template-columns: 1fr; }
  .services-columns { column-count: 2; }
  .section-image-banner { background-attachment: scroll; }
  .header-inner { padding: 0 20px; }
  .logo img { height: 60px; }
}
@media (max-width: 600px) {
  .services-columns { column-count: 1; }
  .edm-gallery { grid-template-columns: 1fr 1fr; }
  .top-bar { font-size: 10px; letter-spacing: 1px; padding: 8px 12px; }
}
