:root {
  --green: #2f9e44;
  --green-dark: #237a34;
  --navy: #16365c;
  --dark: #1c2b36;
  --text: #333d44;
  --gray-bg: #f2f4f5;
  --border: #e3e7ea;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-dark); }

.btn-outline-green {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

.btn-outline-dark {
  background: #eceff1;
  color: #55606a;
  border: none;
  width: 100%;
  justify-content: center;
}
.btn-outline-dark:hover { background: #dfe3e6; }

.btn-outline-blue {
  background: #fff;
  color: #2b8fd6;
  border: 2px solid #2b8fd6;
  font-weight: 600;
}
.btn-outline-blue:hover { background: #2b8fd6; color: #fff; }

/* ---------- Placeholder image boxes ---------- */
.img-box {
  position: relative;
  overflow: hidden;
  background: #e4e8eb;
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-box.is-empty::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: pre-line;
  padding: 20px;
  background: repeating-linear-gradient(45deg, #eceff1, #eceff1 12px, #e0e4e7 12px, #e0e4e7 24px);
  color: #7c8892;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  position: relative;
  z-index: 50;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}
.logo strong { font-weight: 800; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}
.phone i { color: var(--dark); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

.main-nav {
  border-top: 1px solid var(--border);
}
.main-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding-bottom: 4px;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--dark);
  font-weight: 700;
  border-bottom: 2px solid var(--dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 620px;
  min-height: 420px;
}
.img-box--hero { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,30,0.55) 0%, rgba(10,20,30,0.25) 45%, rgba(10,20,30,0.75) 100%);
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 8px;
}
.hero-content p {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  max-width: 600px;
}

/* ---------- Reservation box ---------- */
.reservation-wrap {
  position: relative;
  margin-top: -70px;
  z-index: 10;
}
.reservation-box {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.reservation-label {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--dark);
  align-self: center;
  flex: 0 0 auto;
}
.reservation-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 160px;
}
.reservation-field--small { flex: 0 1 90px; }
.reservation-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.reservation-field input {
  border: 1px solid var(--border);
  background: var(--gray-bg);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}
.reservation-box .btn { flex: 0 0 auto; }

/* ---------- Intro heading ---------- */
.intro-heading {
  text-align: center;
  padding: 70px 0 30px;
}
.intro-heading h2 {
  color: var(--navy);
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Features ---------- */
.features { padding: 20px 0 60px; }
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark);
  margin: 0 0 36px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-box {
  background: var(--gray-bg);
  border-radius: 4px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark);
  padding: 20px;
}

/* ---------- About / location split sections ---------- */
.about-split { padding: 40px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.img-box--wide { aspect-ratio: 7 / 5; border-radius: 4px; }
.split-text {
  text-align: center;
  padding: 0 20px;
}
.split-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.underline-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #b7bfc5;
  margin-bottom: 18px;
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  height: 260px;
  min-height: 200px;
}
.img-box--banner { position: absolute; inset: 0; }
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.55);
}
.page-banner-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-banner-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

/* ---------- About page content ---------- */
.about-page { padding: 60px 0 80px; }
.about-content { max-width: 900px; margin: 0 auto; }

.info-block { margin-bottom: 40px; }
.info-block h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.info-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.info-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}
.info-block p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin: 0 0 16px;
  text-align: justify;
}
.info-list {
  margin: 0 0 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  padding-left: 6px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.hours-card {
  background: var(--gray-bg);
  border-radius: 6px;
  padding: 26px 28px;
}
.hours-card h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}
.hours-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}
.hours-card li span:last-child { font-weight: 700; color: var(--green-dark); }

/* ---------- Amenities (Aktiviteler) ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin: 0 0 24px;
  padding: 0;
}
.amenities-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.amenities-grid li i {
  color: var(--green);
  margin-top: 4px;
  font-size: 13px;
  flex: 0 0 auto;
}
.amenity-note {
  color: #8a939a;
  font-size: 13px;
}
.amenities-grid--paid { margin-top: 6px; }
.amenities-grid--paid li i { color: #d98c1e; }
.amenity-legend {
  font-size: 13px;
  color: #8a939a;
  font-style: italic;
  margin: 0;
}

.distance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  padding: 0;
}
.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.distance-list li span:first-child { font-weight: 600; color: var(--dark); }
.distance-list li span:last-child { font-weight: 700; color: var(--green-dark); }

/* ---------- Gallery page ---------- */
.gallery-page { padding: 50px 0 80px; }
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.gallery-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.gallery-item { margin: 0; }
.img-box--gallery { aspect-ratio: 4 / 3; }
.gallery-item figcaption {
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
  color: var(--dark);
}

/* ---------- Price page ---------- */
.price-page { padding: 50px 0 80px; }

.price-banner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}
.price-banner p {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 20px;
}
.pb-navy { color: var(--navy); }
.pb-red { color: #8a1f1f; }
.pb-lg { font-size: 24px; }
.pb-sm { font-size: 14px; letter-spacing: 0.3px; }
.pb-highlight {
  color: #8a1f1f;
  font-size: 30px;
  font-weight: 800;
}

.room-price-block { max-width: 1000px; margin: 0 auto; }
.room-price-block h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
}
.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.price-table thead th {
  background: #33475b;
  color: #fff;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 20px;
}
.price-table thead th:nth-child(2) { text-align: center; }
.price-table thead th:last-child { text-align: right; }
.price-table tbody td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-table tbody td:nth-child(2) { text-align: center; }
.price-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--dark);
  font-size: 17px;
}

/* ---------- Contact page (Ulaşım) ---------- */
.contact-info-section { padding: 50px 0 10px; }
.contact-authority {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 30px;
  padding: 0 20px;
}
.contact-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 20px;
}
.contact-card:nth-child(odd) { background: var(--gray-bg); }
.contact-card i {
  font-size: 26px;
  color: var(--dark);
}
.contact-card strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card span {
  font-size: 13px;
  color: #8a939a;
}

.contact-form-section { padding: 60px 0 80px; }
.contact-form-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 30px;
}
.contact-form { max-width: 700px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--gray-bg);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.img-box--cta { position: absolute; inset: 0; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.6);
}
.cta-content {
  position: relative;
  text-align: center;
  color: #fff;
}
.cta-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 30px;
}
.call-me-form {
  display: flex;
  max-width: 800px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.08);
}
.call-me-form input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255,255,255,0.95);
}
.call-me-form input:first-child { border-right: 1px solid var(--border); }
.call-me-form button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0 26px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.call-me-form button:hover { background: #0f2440; }

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  justify-content: center;
  color: var(--text);
}
.checkbox-line--light { color: #e6e9eb; }
.checkbox-line--light a { text-decoration: underline; color: #fff; }
.checkbox-line input { margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
  color: var(--dark);
}
.img-box--badge {
  width: 150px;
  height: 150px;
  border-radius: 4px;
}
.footer-links li, .footer-contact li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  display: flex;
  gap: 8px;
}
.footer-links a { display: flex; align-items: center; gap: 8px; }
.footer-links i { color: var(--green); font-size: 12px; }
.footer-contact i { color: var(--green); margin-top: 3px; }

.call-me-form--footer { display: flex; flex-direction: column; gap: 12px; }
.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon i {
  position: absolute;
  left: 14px;
  color: #9aa5ac;
  font-size: 14px;
}
.input-icon input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--border);
  background: var(--gray-bg);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}
.call-me-form--footer .checkbox-line { font-size: 12px; }

.disclaimer {
  text-align: center;
  color: #8a939a;
  font-size: 13px;
  padding: 20px 0 30px;
  border-top: 1px solid var(--border);
}
.disclaimer p { margin: 4px 0; }

.footer-bottom {
  background: var(--gray-bg);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text);
  flex-wrap: wrap;
  gap: 10px;
}
.otelvasyon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
}
.otelvasyon i { color: #2b8fd6; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { padding: 14px 0; }
  .phone-text { display: none; }
  .header-reserve-btn { display: none; }
  .hamburger { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .main-nav a.active, .main-nav a:hover { border-bottom: 1px solid var(--border); }

  .hero { height: 380px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 17px; }

  .page-banner { height: 170px; }
  .page-banner-content h1 { font-size: 26px; }
  .about-page { padding: 40px 0 60px; }
  .info-block p { text-align: left; }
  .hours-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .distance-list { grid-template-columns: 1fr; }

  .gallery-page { padding: 30px 0 50px; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .gallery-header h1 { font-size: 26px; }
  .gallery-header .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }

  .price-page { padding: 30px 0 50px; }
  .price-banner p { font-size: 16px; }
  .pb-lg { font-size: 19px; }
  .pb-highlight { font-size: 24px; }
  .room-price-block h2 { font-size: 21px; }

  .contact-info-section { padding: 0; }
  .contact-authority { padding: 24px 20px; margin: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 26px 24px;
  }
  .contact-card i { font-size: 30px; }

  .contact-form-section { padding: 40px 0 60px; }
  .contact-form-section h2 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { justify-content: stretch; }
  .form-actions .btn { width: 100%; justify-content: center; }

  .reservation-wrap { margin-top: -40px; }
  .reservation-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
    align-items: stretch;
    padding: 22px 20px;
  }
  .reservation-label {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
  }
  .reservation-field { flex: unset; text-align: center; }
  .reservation-box .btn { grid-column: 1 / -1; width: 100%; justify-content: center; margin-top: 4px; }

  .intro-heading h2 { font-size: 24px; }

  .about-split { padding: 0 0 40px; }
  .split-grid { grid-template-columns: 1fr; gap: 0; }
  .img-box--wide { order: 1; aspect-ratio: 4 / 3; border-radius: 0; }
  .split-text {
    order: 2;
    position: relative;
    background: #fff;
    margin: -60px 20px 0;
    padding: 30px 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .footer-top { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .call-me-form { flex-direction: column; }
  .call-me-form input:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ---------- Datepicker ---------- */
.js-datepicker { cursor: pointer; }

.datepicker {
  position: absolute;
  display: none;
  z-index: 500;
  width: min(300px, calc(100vw - 32px));
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.2);
  padding: 16px;
  font-size: 14px;
  font-family: 'Poppins', Arial, sans-serif;
}
.datepicker.open { display: block; }

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dp-title {
  font-weight: 600;
  color: var(--dark);
}
.dp-header button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 4px;
}
.dp-header button:hover { background: var(--gray-bg); }
.dp-header button:disabled { opacity: 0.3; cursor: default; }
.dp-header button:disabled:hover { background: none; }

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: #e08a1e;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
}

.dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-day {
  text-align: center;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  color: var(--dark);
}
.dp-day:hover { background: var(--gray-bg); }
.dp-muted { color: #ccd2d7; cursor: default; }
.dp-muted:hover { background: none; }
.dp-disabled { color: #ccd2d7; cursor: not-allowed; pointer-events: none; }
.dp-selected { background: var(--green); color: #fff; }
.dp-selected:hover { background: var(--green); }
.dp-today-cell { font-weight: 700; color: var(--green); }

.dp-today {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding-top: 12px;
  border: none;
  border-top: 1px solid var(--border);
  background: none;
  color: #2b8fd6;
  font-weight: 600;
  cursor: pointer;
}
.dp-today:hover { text-decoration: underline; }

/* ---------- Success modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}
.modal-box h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--dark);
}
.modal-box p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.modal-box button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.modal-box button:hover { background: var(--green-dark); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  z-index: 900;
  transition: transform 0.15s ease, background 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); background: #20bd5a; color: #fff; }

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
