:root {
  --navy: #081321;
  --red: #c8102e;
  --white: #ffffff;
  --gray: #f4f7fb;
  --text: #516173;
  --border: rgba(8, 19, 33, 0.08);
  --shadow: 0 24px 60px rgba(8, 19, 33, 0.14);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--navy);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(200, 16, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, var(--gray) 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 1100;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 100px;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(8, 19, 33, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav-links a,
.header.scrolled .logo,
.header.scrolled .nav-toggle span {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
  padding: 8px 0 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
}

.nav-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: translateY(1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links a.active {
  color: var(--white);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active:hover,
.nav-links a.active:focus-visible {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  min-height: 48px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff4f61);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(200, 16, 46, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(8, 19, 33, .88) 0%,
      rgba(8, 19, 33, .65) 38%,
      rgba(8, 19, 33, .35) 60%,
      rgba(8, 19, 33, .25) 100%),
    url("../assets/hero.webp");
  background-size: cover;
  background-position: 78% center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -15% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.3), transparent 70%);
  filter: blur(40px);
}

.hero-grid {
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 46px;
  min-height: 92svh;
}

.hero-copy {
  color: var(--white);
  max-width: 950px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 0.80rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #9fb4d0;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding-top: 70px;
  padding-bottom: 50px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(244, 247, 251, 0.95));
}

.section-intro {
  max-width: 980px;
  margin-bottom: 36px;
}

.section-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom: 10px;
}

.section-intro p {
  color: var(--text);
}

.comparison-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(8, 19, 33, 0.08);
}

.gallery-standalone {
  display: grid;
  gap: 30px;
  margin-top: 10px;
}

.gallery-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 19, 33, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(8, 19, 33, 0.08);
}

.gallery-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.gallery-header {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9fb4d0;
  margin-bottom: 16px;
}

.standalone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.standalone-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(8, 19, 33, 0.08);
  box-shadow: 0 24px 60px rgba(8, 19, 33, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.standalone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(8, 19, 33, 0.12);
}

.standalone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.standalone-card:hover img {
  transform: scale(1.04);
}

.standalone-card .comparison-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.faq-item,
.contact-form {
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
  padding: 0;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p,
.contact-copy p {
  color: var(--text);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
  transition: transform .35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-content {
  padding: 28px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.review-header .review-link {
  flex-shrink: 0;
}

.review-card {
  max-width: 360px;
  margin: 0;
  padding: 18px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(8, 19, 33, .08);
}

.review-stars {
  color: #f5b301;
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.review-card blockquote {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

.review-author strong {
  display: block;
  margin-bottom: 4px;
}

.review-author span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: .95rem;
}

.google-icon {
  width: 16px;
  height: 16px;
}

.review-link {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #5c718a;
  color: #5c718a;
  background: transparent;
  transition: all .3s ease;
}

.review-link:hover {
  background: #5c718a;
  color: white;
}

.faq-grid {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: var(--red);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--text);
}

.faq-item.active .faq-answer {
  max-height: 120px;
  margin-top: 10px;
}

.contact-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form label {
  display: flex;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  flex-direction: column;
}

.contact-form label>*:last-child {
  margin-top: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(8, 19, 33, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
  color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(200, 16, 46, 0.16);
  border-color: rgba(200, 16, 46, 0.25);
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contact-copy {
  max-width: 600px;
}

.contact-info {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 20px;
  margin-right: 120px;
  margin-bottom: 20px;
}

.contact-info strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-info p {
  margin: 0;
}

.contact-info a {
  color: var(--text);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--red);
}

.full-width {
  grid-column: 1 / -1;
}

.contact-form .btn-primary {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  padding: 12px 24px;
  font-size: 0.9rem;
}

.form-status {
  min-height: 24px;
  color: var(--red);
  font-weight: 600;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 24px 0 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0.8);
  opacity: 0.8;
  transition: all .25s ease;
}

.footer-social a:hover .social-icon {
  filter: brightness(1);
  opacity: 1;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 18px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-credits {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-credits a {
  color: inherit;
  text-decoration: underline;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .4rem;
}

.footer-logo .logo-image {
  width: 56px;
  height: 56px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.desktop-only {
  display: inline-flex;
}

/* Lightbox Base Styles */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.gallery-lightbox-panel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 100001;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100001;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-prev {
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-next {
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(0, 0, 0, 0.85);
}

.gallery-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gallery-lightbox-image {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-caption {
  color: white;
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: center;
  max-width: calc(100% - 80px);
}

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

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full-width {
    grid-column: auto;
  }

  .contact-top {
    flex-direction: column;
    gap: 30px;
  }

  .contact-copy {
    max-width: 100%;
  }

  .contact-form input[type="date"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .review-header,
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .review-link {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .desktop-only {
    display: none;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-logo {
    height: 72px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(8, 19, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
    margin-left: 0;
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 4px 0;
    font-size: 0.98rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-grid {
    padding: 110px 0 60px;
    gap: 24px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.7rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-row span {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .faq-item,
  .contact-form {
    padding: 22px;
  }

  .faq-question {
    min-height: 44px;
    line-height: 1.5;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 13px 14px;
  }

  .section {
    padding: 76px 0;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .footer-brand {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    align-items: center;
  }

  .footer-contact a[href^="tel:"] {
    margin-left: auto;
    white-space: nowrap;
    grid-column: 1 / 2;
    text-align: left;
  }

  .footer-contact a[href^="mailto:"] {
    margin-right: auto;
    grid-column: 2 / 3;
    text-align: right;
  }

  .footer-social {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    width: 100%;
  }

  @media (max-width: 480px) {
    .container {
      width: min(1180px, calc(100% - 18px));
    }

    .nav-logo {
      height: 64px;
    }

    .hero h1 {
      font-size: 1.95rem;
    }

    .hero p {
      font-size: 0.97rem;
    }

    .eyebrow {
      letter-spacing: 0.2em;
      font-size: 0.72rem;
    }

    .section-intro h2 {
      font-size: 1.6rem;
    }

    .service-card,
    .faq-item,
    .contact-form {
      padding: 20px;
    }
  }

  @media (max-width: 360px) {
    .nav-logo {
      height: 58px;
    }

    .hero h1 {
      font-size: 1.8rem;
    }

    .btn {
      padding: 12px 18px;
      font-size: 0.95rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }

  /* Lightbox Mobile Adjustments */
  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }

  .gallery-lightbox-image {
    max-height: 75vh;
  }
}

/* File Upload Styling */
.contact-form input[type="file"] {
  padding: 9px 12px;
  cursor: pointer;
}

.contact-form input[type="file"]::file-selector-button {
  background: rgba(8, 19, 33, 0.05);
  border: 1px solid rgba(8, 19, 33, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  margin-right: 12px;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s ease;
}

.contact-form input[type="file"]::file-selector-button:hover {
  background: rgba(8, 19, 33, 0.1);
}