:root {
  --accent: #29a53c;
  --accent-dark: #29a53c;
  --dark: #121212;
  --light: #f5f6f8;
  --text: #444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

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

a:hover,
a:focus {
  color: var(--accent-dark);
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.page {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7));
}

.hero-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2.75rem 2rem;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-bar.has-background {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85)), url('../images/products/billboard.jpg') center/cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-compact {
  min-height: 164px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.6)), url('../images/products/billboard.jpg') center/cover;
  align-items: flex-end;
}

.hero-compact .hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 2rem 2.75rem;
  max-width: 720px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.9rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-subtitle {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.brand img {
  width: min(240px, 45vw);
  height: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:focus,
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.45);
}

.nav-toggle-box {
  display: grid;
  gap: 4px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0 20px 0;
}

.primary-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.primary-nav li {
  position: relative;
}

.primary-nav.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.primary-nav.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.primary-nav.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav.is-open ul {
  display: flex;
}

.primary-nav li:hover>a,
.primary-nav li:focus-within>a {
  color: var(--accent);
}

.primary-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.92);
  padding: 1rem;
  border-radius: 8px;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.primary-nav .submenu:hover {
  display: flex;
}

.primary-nav .submenu a {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.primary-nav .submenu a:hover {
  color: var(--accent);
}

.submenu-open>.submenu {
  display: flex;
}

.has-submenu:hover>.submenu,
.has-submenu:focus-within>.submenu {
  display: flex;
}

.nav-badge {
  position: absolute;
  top: -14px;
  right: -18px;
  background: #d8272f;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  color: var(--dark);
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 999px;
}

.blockquote-area blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-size: 1.1rem;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(255, 92, 28, 0.1), rgba(255, 92, 28, 0));
  border-left: 6px solid var(--accent);
  padding: 2rem 2.5rem;
  border-radius: 16px;
}

.services-area {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.service-card h3 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.action-area {
  position: relative;
  background: url('../images/hero.jfif') center/cover fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.action-area .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.action-area .container {
  position: relative;
  z-index: 1;
}

.action-area p {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.latest-projects {
  background: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #efefef;
}

.project-caption {
  padding: 1.25rem 1.5rem 1.75rem;
}

.project-caption h3 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.project-caption p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.cta-row {
  margin-top: 2.5rem;
  text-align: center;
}
  
.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}

.instagram-button:hover {
  background: var(--accent);
  color: #fff;
}

.clients-area {
  background: var(--light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.client {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
  object-fit: cover;
  height: 190px;
  width: 100%;
}

.product-card h3 {
  margin: 1.2rem 0 1.6rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 46px rgba(0, 0, 0, 0.12);
}

.primary-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  outline: var(--accent) 1px solid;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-button:hover {
  color: var(--accent-dark);
  background: #fff
}

.products-page {
  background: #fff;
}

.facts-area {
  background: #fff;
  color: #29a53c;
}

.facts-area h2 {
  color: #444;
}


.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.fact-number {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  display: block;
}

.fact-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: #444;
}

.site-footer {
  background: #0d0d0d;
  color: #fff;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-column h3 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.contact-info p {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.contact-info a {
  color: #fff;
}

.social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.social-links a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.widget-title {
  font-size: 56px;
  text-transform: uppercase;
}

.gallery-section .widget-title {
  margin-bottom: 1.25rem;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.gallery-head h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.gallery-head h2::after {
  margin-left: 0;
}

.gallery-head p {
  margin: 0;
  color: #666;
}

.gallery-count {
  background: #f0f4f5;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.gallery-filters {
  background: var(--light);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-filters h3 {
  margin: 0.15rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-pills {
  display: grid;
  gap: 0.5rem;
}

.filter-pill {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.filter-pill:hover {
  transform: translateX(2px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.filter-pill.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(41, 165, 60, 0.28);
}

.filter-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-card.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.gallery-card[hidden] {
  display: none !important;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.12);
}

.gallery-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #ededed;
}

.gallery-copy {
  padding: 1.15rem 1.25rem 1.4rem;
}

.gallery-copy h3 {
  margin: 0.35rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.gallery-copy p {
  margin: 0;
  color: #555;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem;
  background: #f6f6f6;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-sentinel {
  height: 2px;
  width: 100%;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
}

.gallery-modal__content {
  position: relative;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}

.gallery-modal__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

@media (max-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 60vh;
  }

  .hero-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    max-height: none;
    overflow: visible;
  }

  .filter-pills {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .primary-nav ul {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .primary-nav li {
    padding-bottom: 0.5rem;
  }

  .primary-nav .submenu {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .brand img {
    width: 180px;
  }

  .hero-content {
    padding: 0 1.25rem 2.25rem;
  }

  .primary-nav {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav ul {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 1rem;
    border-radius: 12px;
  }

  .primary-nav li {
    width: 100%;
  }

  .primary-nav a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .primary-nav .submenu {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .section {
    padding: 3rem 0;
  }

  .blockquote-area blockquote {
    padding: 1.75rem;
    font-size: 1rem;
  }

  .action-area p {
    letter-spacing: 0.2em;
  }

  .project-card img {
    height: 160px;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 540px) {
  .hero-bar {
    padding-top: 2rem;
  }

  .primary-nav ul {
    padding: 0.85rem;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .service-card,
  .product-card,
  .project-card {
    border-radius: 14px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .facts-grid {
    gap: 1.75rem;
  }

  .contact-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

/* Service Modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.service-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.service-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-content {
  background: #fff;
  width: min(95%, 1400px);
  max-height: 95vh;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.service-modal.is-visible .service-modal-content {
  transform: translateY(0);
}

.service-modal-image {
  background: #f0f0f0;
  position: relative;
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-modal-text {
  padding: 3rem;
  overflow-y: auto;
}

.service-modal-text h3 {
  margin-top: 0;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.service-modal-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.service-modal-text ul {
  padding-left: 1.2rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.service-modal-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.service-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
  color: var(--dark);
  font-size: 1.2rem;
}

.service-modal-close:hover {
  transform: scale(1.1);
  background: #fff;
  color: var(--accent);
}

@media (max-width: 900px) {
  .service-modal-content {
    grid-template-columns: 1fr;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
  }
  
  .service-modal-image {
    height: 240px;
    flex-shrink: 0;
    position: relative;
  }
  
  .service-modal-text {
    padding: 1.5rem;
  }
  
  .service-modal-close {
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
  }
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-image-side img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-image-side img {
    height: 300px;
  }
}
