/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Variables ===== */
:root {
  --water-deep: #0c4a6e;
  --water-mid: #0369a1;
  --water-light: #38bdf8;
  --water-pale: #e0f2fe;
  --water-foam: #f0f9ff;
  --green-deep: #065f46;
  --green-mid: #059669;
  --green-light: #34d399;
  --stone-dark: #334155;
  --stone-mid: #64748b;
  --stone-light: #94a3b8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--water-mid);
  margin-bottom: 12px;
}
.section__label--center { text-align: center; }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--water-deep);
  line-height: 1.2;
  margin-bottom: 48px;
}
.section__title--center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--water-mid), var(--water-deep));
  color: var(--white);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--water-light), var(--water-mid));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 105, 161, 0.3);
}
.btn--outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--water-deep);
}
.btn--white {
  background: var(--white);
  color: var(--water-deep);
}
.btn--white:hover {
  background: var(--water-pale);
  transform: translateY(-2px);
}
.btn--outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
}
.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header--scrolled .header__link,
.header--scrolled .header__phone { color: var(--stone-dark); }
.header--scrolled .header__logo span { color: var(--water-deep); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.header--scrolled .header__logo { color: var(--water-deep); }
.header__logo-icon { width: 36px; height: 36px; }

.header__nav {
  display: flex;
  gap: 28px;
}
.header__link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--water-light);
  transition: var(--transition);
}
.header__link:hover::after { width: 100%; }
.header__link:hover { color: var(--white); }

.header__phone {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}
.header__phone:hover { color: var(--water-light); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.header--scrolled .header__burger span { background: var(--stone-dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #0c4a6e 0%, #164e63 30%, #1e3a5f 60%, #0f172a 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 74, 110, 0.6);
}

.hero__waterfall {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.waterfall__stream {
  position: absolute;
  left: var(--x);
  top: -20%;
  width: 3px;
  height: 140%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(56, 189, 248, 0.1) 20%,
    rgba(56, 189, 248, 0.4) 50%,
    rgba(56, 189, 248, 0.6) 70%,
    rgba(255, 255, 255, 0.3) 90%,
    transparent 100%
  );
  animation: waterfall-fall var(--duration) linear infinite;
  animation-delay: var(--delay);
  filter: blur(1px);
}
.waterfall__stream::before {
  content: '';
  position: absolute;
  top: 60%;
  left: -4px;
  width: 11px;
  height: 40%;
  background: linear-gradient(180deg,
    transparent,
    rgba(56, 189, 248, 0.15),
    rgba(255, 255, 255, 0.1)
  );
  filter: blur(3px);
}

@keyframes waterfall-fall {
  0% { transform: translateY(-10%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(10%); opacity: 0; }
}

.waterfall__mist {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(12, 74, 110, 0.8) 0%, transparent 100%);
  animation: mist-drift 8s ease-in-out infinite;
}
@keyframes mist-drift {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 0.9; transform: translateX(20px); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(12, 74, 110, 0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  padding-inline: 10px;
}

.hero__location {
  color: var(--water-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--water-light), #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  gap: 48px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  z-index: 3;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text {
  font-size: 16px;
  color: var(--stone-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--stone-dark);
}
.about__feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--water-pale);
  color: var(--water-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__feature-icon svg { width: 18px; height: 18px; }

.about__visual {
  position: relative;
  height: 400px;
}

.about__card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__card--1 {
  top: 0;
  left: 0;
  width: 260px;
  height: 280px;
}
.about__card--2 {
  bottom: 0;
  right: 0;
  width: 200px;
  height: 180px;
}
.about__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(12, 74, 110, 0.7), rgba(22, 78, 99, 0.7));
  z-index: 1;
}



.about__card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.about__card-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
}
.about__card-label {
  font-size: 14px;
  opacity: 0.7;
}

/* ===== Services ===== */
.services {
  background: var(--water-foam);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--water-light), var(--water-mid));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__img {
  margin: -36px -28px 20px -28px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--water-pale), #bae6fd);
  color: var(--water-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--water-deep);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--stone-mid);
  line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery__scroll {
  overflow-x: auto;
  padding: 0 24px 24px;
  -webkit-overflow-scrolling: touch;
}
.gallery__scroll::-webkit-scrollbar { height: 6px; }
.gallery__scroll::-webkit-scrollbar-track { background: var(--water-pale); border-radius: 3px; }
.gallery__scroll::-webkit-scrollbar-thumb { background: var(--water-light); border-radius: 3px; }

.gallery__track {
  display: flex;
  gap: 20px;
  padding: 8px 0;
  width: max-content;
}

.gallery__item {
  width: 300px;
  flex-shrink: 0;
}

.gallery__img-wrapper {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover .gallery__img-wrapper img {
  transform: scale(1.05);
}

.gallery__caption {
  margin-top: 16px;
  font-weight: 500;
  color: var(--stone-dark);
  text-align: center;
}

/* ===== Pricing ===== */
.pricing {
  background: var(--water-foam);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border: 2px solid var(--water-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.price-card--featured:hover { transform: scale(1.05) translateY(-4px); }

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--water-mid), var(--water-deep));
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.price-card__header {
  margin-bottom: 24px;
}

.price-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--water-deep);
  margin-bottom: 12px;
}

.price-card__waterfall {
  height: 40px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(170deg, var(--water-deep), #164e63);
}
.pw__stream {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.6), transparent);
  animation: waterfall-fall 1.8s linear infinite;
  animation-delay: var(--delay, 0s);
}

.price-card__price {
  margin-bottom: 24px;
}
.price-card__amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--water-deep);
}
.price-card__currency {
  font-size: 16px;
  color: var(--stone-mid);
}

.price-card__list {
  margin-bottom: 28px;
}
.price-card__list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  color: var(--stone-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--water-light);
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--stone-light);
}

/* ===== Reviews ===== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 15px;
  color: var(--stone-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-light), var(--water-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.review-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--stone-dark);
}
.review-card__author span {
  font-size: 12px;
  color: var(--stone-light);
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, var(--water-deep), #164e63);
  border-radius: var(--radius);
  color: var(--white);
}
.reviews__rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
}
.reviews__rating-stars {
  font-size: 22px;
  color: #fbbf24;
  margin-bottom: 4px;
}
.reviews__rating-info span {
  font-size: 14px;
  opacity: 0.7;
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.contact__item {
  display: flex;
  gap: 16px;
}
.contact__item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--water-pale);
  color: var(--water-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item-icon svg { width: 22px; height: 22px; }
.contact__item strong {
  display: block;
  font-size: 14px;
  color: var(--stone-dark);
  margin-bottom: 4px;
}
.contact__item p {
  font-size: 14px;
  color: var(--stone-mid);
  line-height: 1.6;
}
.contact__item a {
  color: var(--water-mid);
  transition: var(--transition);
}
.contact__item a:hover { color: var(--water-deep); }

.contact__payment {
  padding: 20px;
  background: var(--water-foam);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.contact__payment strong {
  display: block;
  margin-bottom: 6px;
  color: var(--stone-dark);
}
.contact__payment span { color: var(--stone-mid); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.contact__map iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.contact__map-link {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--water-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact__map-link:hover { box-shadow: var(--shadow-md); }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, var(--water-deep), #0f172a);
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta__waterfall {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cta__stream {
  position: absolute;
  left: var(--x);
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.3), transparent);
  animation: waterfall-fall 2.5s linear infinite;
  animation-delay: var(--delay);
}

.cta__content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta__text {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  padding: 48px 0;
  color: rgba(255,255,255,0.5);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand p {
  font-size: 13px;
  margin-top: 8px;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 14px;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--water-light); }
.footer__copy {
  text-align: right;
  font-size: 12px;
}
.footer__copy p + p { margin-top: 4px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 48px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .header__nav--open { right: 0; }
  .header__nav .header__link { color: var(--stone-dark); font-size: 16px; }
  .header__phone { display: none; }
  .header__burger { display: flex; }

  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__stats { gap: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  .about__features { grid-template-columns: 1fr; }
  .about__visual { height: 300px; }
  .about__card--1 { width: 200px; height: 220px; }
  .about__card--2 { width: 160px; height: 140px; }

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

  .gallery__item { width: 260px; }
  .gallery__waterfall-card { height: 300px; }

  .cta__actions { flex-direction: column; align-items: center; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__copy { text-align: center; }
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__row { display: flex; flex-direction: column; gap: 6px; }
.contact-form__row--hidden { position: absolute; left: -9999px; opacity: 0; height: 0; }

.contact-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--stone-dark);
}

.contact-form__input {
  border: 1px solid var(--water-pale);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--stone-dark);
  background: var(--water-foam);
  transition: var(--transition);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--water-light);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
  background: var(--white);
}

.contact-form__textarea { resize: vertical; min-height: 100px; }

.contact-form__submit { margin-top: 6px; }
.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form__status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.contact-form__status--success { color: var(--green-mid); }
.contact-form__status--error { color: #dc2626; }

@media (width >= 767px) {
  .contact__grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.contact__info { grid-column: 1; grid-row: 1; }
.contact-form { grid-column: 2; grid-row: 1; }
}



.contact__map {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 8px;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide--active { opacity: 1; }

.hero__slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero__dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero__dot--active {
  background: var(--water-light);
  transform: scale(1.3);
}

.hero__dot:hover { background: rgba(255,255,255,0.7); }

@media (width <=767px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero__content p, .hero__content h1 {
    text-align: center;
  }
}