:root {
  --red: #dc2626;
  --dark: #163860;
  --dark-2: #111827;
  --gray: #64748b;
  --light: #f8fafc;
}

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

body {
  font-family: "Inter", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  scroll-behavior: smooth;
  cursor: default;
}

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

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

.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo {
  height: 48px;
  width: auto;
  color: #ffffff;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: Inter, sans-serif;
  color: var(--light);
}
.logo-text span {
  color: var(--red);
}
.site-header.is-scrolled .logo-text {
  color: var(--dark);
}

.site-header.is-scrolled .logo {
  color: var(--red);
}
.site-header svg#logo {
  max-height: 90px;
}
.site-header.is-scrolled svg#logo {
  width: 30%;
  height: auto;
  max-height: 70px;
}
.logo-letter {
  filter: url(#shadow);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  color: #ffffff;
}

.site-header.is-scrolled .main-nav {
  color: #0f172a;
}

.nav-link:hover,
.lang-switch button:hover {
  color: var(--red);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.8;
  border-left: 1px solid currentColor;
  padding-left: 1.5rem;
}

.lang-switch span {
  opacity: 0.4;
}

.lang-switch button {
  background: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
  color: inherit;
}

.primary-button {
  background: var(--red);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.25);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.primary-button:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000")
      center/cover;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 9rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  margin: 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  max-width: 520px;
  font-size: 1.125rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-phone svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.hero-cta {
  display: inline-block;
  background: var(--red);
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.35);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero-cta:hover {
  background: #b91c1c;
  transform: translateY(2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 12px);
  }
}

.section {
  padding: 6rem 0;
}

.section-muted {
  background: #f1f5f9;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  font-weight: 800;
  margin-bottom: 3rem;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2,
.benefits h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 2rem;
}
.benefits h2 {
  position: sticky;
  top: 100px;
}

.about-text h2 {
  border-left: 8px solid var(--red);
  padding-left: 1.5rem;
}

.about-text p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-text blockquote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid #e2e8f0;
  color: #64748b;
  font-style: italic;
}

@media (min-width: 768px) {
  .about-text {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.benefit-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-grid article {
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  position: sticky;
  top: 100px;
}

.benefit-grid article:nth-child(1) {
  top: 170px;
}
.benefit-grid article:nth-child(2) {
  top: 170px;
}
.benefit-grid article:nth-child(3) {
  top: 190px;
}
.benefit-grid article:nth-child(4) {
  top: 190px;
}
.benefit-grid article:nth-child(5) {
  top: 200px;
}
.benefit-grid article:nth-child(6) {
  top: 200px;
}

.benefit-icon {
  color: var(--red);
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
}

.benefit-grid h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.benefit-grid p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.gallery-grid figure {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}
.gallery-grid figure a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
}
.pswp--touch button.pswp__button--arrow {
  visibility: visible;
  opacity: 80%;
  top: 90%;
}

.section-dark {
  background: var(--dark);
  color: #ffffff;
}

.contact-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-form h2,
.contact-details h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 2rem;
}

#contact-form {
  display: grid;
  gap: 1rem;
}

#contact-form input,
#contact-form textarea {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--red);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.detail-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1.5rem;
  font-weight: 600;
}

.detail-phone {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
}

.map-section {
  position: relative;
  height: 500px;
}

.map-card {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border-left: 8px solid var(--red);
  max-width: 360px;
}

.map-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.map-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.map-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
}

.map-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.map-card svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  background: #0b1120;
  color: #94a3b8;
  padding: 3rem 0;
  border-top: 1px solid #1e293b;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}

.logo-wrap.muted {
  color: #94a3b8;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 1rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-phone {
    justify-content: center;
  }
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus,
.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--red);
}

.custom-select-trigger svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger svg {
  transform: rotate(180deg);
  color: var(--red);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 50;
  display: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.custom-select-wrapper.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 1rem 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option.selected {
  background-color: var(--red);
}

@media (max-width: 720px) {
  .site-header {
    padding: 1rem 0;
  }

  .primary-button {
    padding: 0.65rem 1.25rem;
  }

  .map-card {
    position: static;
    margin: 1.5rem;
  }

  .map-section {
    height: auto;
  }

  .map-section iframe {
    height: 320px;
  }
}
