/* ═══════════════════════════════════════════════════════════
   Simply Green and Garden Spray — Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:        #4a7c59;
  --green-light:  #6aaa7a;
  --green-dark:   #2d5a3d;
  --green-bg:     #3d6b4f;
  --yellow:       #f5e67a;
  --off-white:    #f8f7f2;
  --card-bg:      #fefefe;
  --body-bg:      #d6d6d6;
  --text:         #1a1a1a;
  --text-muted:   #888;
  --shadow:       0 4px 18px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.15);
  --radius:       18px;
  --radius-sm:    10px;
  --mobile-max:   430px;
  --desktop-max:  1100px;
  --col-gap:      28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--body-bg);
  color: var(--text);
  min-height: 100vh;
}

/* ─── SITE WRAPPER ──────────────────────────────────────── */
#site-wrapper {
  width: 100%;
  max-width: var(--mobile-max);
  margin: 0 auto;
  background: var(--off-white);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 700px) {
  body { display: block; }

  #site-wrapper {
    max-width: 100%;
    overflow-x: visible;
  }
}

/* ─── HEADER ────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 #e0e0e0;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}

@media (min-width: 700px) {
  header {
    padding: 0 48px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding: 8px 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hamburger */
#hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 101;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

#hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Desktop nav */
.desktop-nav {
  display: none;
  gap: 32px;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.desktop-nav a:hover {
  color: var(--green);
  border-color: var(--green);
}

@media (min-width: 700px) {
  #hamburger { display: none; }
  .desktop-nav { display: flex; }
}

/* ─── MOBILE OVERLAY MENU ───────────────────────────────── */
#mobile-menu {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--mobile-max);
  background: #fff;
  z-index: 99;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  border-top: 1px solid #eee;
}

#mobile-menu.open { display: flex; }

#mobile-menu a {
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}

#mobile-menu a:last-child { border-bottom: none; }

#mobile-menu a:hover {
  background: #f5f9f5;
  color: var(--green);
}

/* ─── SECTION BASE ──────────────────────────────────────── */
section { padding: 40px 20px; }

@media (min-width: 700px) {
  section { padding: 60px 48px; }
}

.section-inner {
  max-width: var(--desktop-max);
  margin: 0 auto;
}

.section-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

@media (min-width: 700px) {
  .section-title { font-size: 28px; }
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 24px;
}

/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  padding: 52px 24px 44px;
  text-align: center;
  background: #fff;
}

@media (min-width: 700px) {
  #hero {
    padding: 90px 48px 80px;
  }
}

.hero-heading {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

@media (min-width: 700px) {
  .hero-heading {
    font-size: 64px;
    margin-bottom: 36px;
  }
}

.hero-heading .green { color: var(--green); }

.stars-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.stars-display .star-row {
  display: flex;
  gap: 2px;
}

.stars-display .rating-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.stars-display .review-count {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}

.stars-display .review-count:hover {
  color: var(--green);
  text-decoration: underline;
}

@media (min-width: 700px) {
  .stars-display .rating-num { font-size: 20px; }
  .stars-display .review-count { font-size: 15px; }
}

.review-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
  cursor: pointer;
  transition: opacity 0.2s;
}

.review-link:hover { opacity: 0.7; }

/* ─── PROGRAMS SECTION ──────────────────────────────────── */
#programs { background: var(--off-white); }

.carousel-track-wrap {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

@media (min-width: 700px) {
  .carousel-track-wrap {
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  padding-right: 20px;
  cursor: grab;
}

.carousel-track:active { cursor: grabbing; }

.carousel-track::-webkit-scrollbar { display: none; }

@media (min-width: 700px) {
  .carousel-track {
    overflow-x: visible;
    scroll-snap-type: none;
    padding-right: 0;
    padding-bottom: 12px;
    gap: var(--col-gap);
    cursor: default;
  }
}

.program-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: calc(100% - 28px);
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 22px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 700px) {
  .program-card {
    width: calc(33.33% - 19px);
    flex-shrink: 0;
  }

  .program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
}

/* ─── BADGES ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--yellow);
  color: #5a4800;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.badge-green {
  background: #e2f0e7;
  color: var(--green-dark);
}

/* ─── PROGRAM CARD INTERNALS ────────────────────────────── */
.program-card h3 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.program-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.program-card ul li {
  font-size: 13.5px;
  padding: 4px 0 4px 18px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
  position: relative;
}

.program-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--green);
  font-size: 11px;
}

.program-card .visits {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  padding: 8px 12px;
  background: #f2f8f4;
  border-radius: var(--radius-sm);
}

.program-card .note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── CAROUSEL DOTS ─────────────────────────────────────── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.dot.active {
  background: var(--green);
  transform: scale(1.3);
}

@media (min-width: 700px) {
  .carousel-dots { display: none; }
}

/* ─── ADDITIONAL SERVICES ───────────────────────────────── */
#services { background: #fff; }

@media (min-width: 700px) {
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--col-gap);
  }
}

.service-badges { margin-bottom: 6px; }

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 20px 18px;
  margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 700px) {
  .service-card {
    margin-bottom: 0;
  }

  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.service-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
}

/* ─── REVIEWS ───────────────────────────────────────────── */
#reviews { background: var(--off-white); }

.tabs {
  display: flex;
  border: 2px solid var(--green);
  border-radius: 30px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 22px;
}

.tab-btn {
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green);
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.tab-btn.active {
  background: var(--green);
  color: #fff;
}

.reviews-carousel-wrap {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

@media (min-width: 700px) {
  .reviews-carousel-wrap {
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}

.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
  padding-right: 20px;
  cursor: grab;
}

.reviews-track:active { cursor: grabbing; }

.reviews-track::-webkit-scrollbar { display: none; }

@media (min-width: 700px) {
  .reviews-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 0;
    gap: var(--col-gap);
    cursor: grab;
    scroll-padding-left: 0;
  }
}

.review-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: calc(100% - 28px);
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  transition: box-shadow 0.2s;
}

@media (min-width: 700px) {
  .review-card {
    width: 380px;
  }

  .review-card:hover {
    box-shadow: var(--shadow-hover);
  }
}

.review-card .rv-stars {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.rv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.rv-avatar.owner-av {
  background: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.rv-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.rv-label {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
}

.rv-text {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}

.rv-photos-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
  cursor: pointer;
  transition: opacity 0.2s;
}

.rv-photos-link:hover { opacity: 0.7; }

.rv-no-photos {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.review-counter {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  min-height: 20px;
}

@media (min-width: 700px) {
  .review-counter { display: none; }
}

/* ─── CONTACT ───────────────────────────────────────────── */
#contact {
  background: #fff;
  text-align: center;
}

#contact .section-title { font-size: 20px; }

@media (min-width: 700px) {
  #contact .section-title { font-size: 26px; }
}

.contact-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 4px;
}

.contact-info { margin-bottom: 24px; }

.contact-info p {
  font-size: 15px;
  margin-bottom: 8px;
}

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

.contact-info a:hover { text-decoration: underline; }

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 700px) {
  .contact-btns {
    flex-direction: row;
    justify-content: center;
  }
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(74,124,89,0.3);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74,124,89,0.4);
}

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

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

.btn-full { width: 100%; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--green-bg);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 20px;
  font-size: 12px;
  line-height: 1.8;
}

footer a { color: rgba(255,255,255,0.9); }

/* ─── MODAL BASE ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-box--dark {
  background: #111;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.modal-close--light { color: #888; }

.modal-close--light:hover { color: #fff; }

.modal-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  padding-right: 24px;
}

/* ─── CUSTOMER PROFILE MODAL ───────────────────────────── */
.profile-modal-overlay {
  z-index: 260;
}

.profile-modal-box {
  max-width: 640px;
  border-radius: 86px;
  border: 2px solid #b7b7b7;
  padding: 52px 58px 42px;
  color: #666;
}

.profile-modal-close {
  top: 38px;
  right: 46px;
  font-size: 44px;
  font-weight: 900;
  color: #6b6b6b;
}

.profile-step {
  display: none;
}

.profile-step.active {
  display: block;
}

.profile-intro-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 58px;
  color: #1a1a1a;
}

.profile-intro-body {
  max-width: 470px;
}

.profile-intro-body p {
  font-size: 21px;
  line-height: 1.38;
  font-weight: 800;
  margin-bottom: 24px;
}

.profile-intro-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 52px;
}

.profile-action-btn {
  min-height: 74px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

.profile-action-solid {
  border: 0;
  background: #4fac58;
  color: #fff;
}

.profile-action-outline {
  border: 6px solid #4fac58;
  background: #fff;
  color: #444;
}

.profile-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}

.profile-field {
  margin-bottom: 20px;
}

.profile-field-full {
  grid-column: 1 / -1;
}

.profile-field label {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #666;
  margin-bottom: 8px;
}

.profile-field .req {
  color: #f00;
  font-size: 30px;
}

.profile-field input {
  width: 100%;
  height: 52px;
  border: 3px solid #aaa;
  padding: 8px 14px;
  font-size: 21px;
  font-weight: 800;
  color: #666;
  font-family: 'Roboto', sans-serif;
  outline: none;
}

.profile-field input:focus {
  border-color: var(--green);
}

.profile-field input.profile-invalid {
  border-color: #f00;
}

.profile-privacy {
  margin: 8px 10px 28px;
  color: #000;
}

.profile-privacy p {
  font-size: 18px;
  line-height: 1.38;
  margin-bottom: 22px;
}

.profile-submit-wrap {
  display: flex;
  justify-content: center;
}

.profile-submit-btn {
  min-width: 380px;
  min-height: 76px;
  border-radius: 14px;
  border: 6px solid #4fac58;
  background: #fff;
  color: #4fac58;
  font-size: 23px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

.profile-error-box {
  display: none;
  min-width: 340px;
  min-height: 76px;
  border: 6px solid #aaa;
  border-radius: 14px;
  background: #fff;
  color: #f00;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  padding: 12px;
}

.profile-success {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #666;
}

.profile-success h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 46px;
}

.profile-success-main {
  font-size: 27px;
  line-height: 1.35;
  font-weight: 900;
  color: #666;
  margin-bottom: 118px;
}

.profile-review-prompt {
  font-size: 18px;
  font-weight: 900;
  color: #4fac58;
  margin: 0 0 14px 20px;
}

.profile-review-btn {
  width: 100%;
  min-height: 76px;
  border-radius: 14px;
  border: 6px solid #4fac58;
  background: #fff;
  color: #3b3b3b;
  font-size: 21px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  margin-bottom: 20px;
}

.profile-done-btn {
  width: 100%;
  min-height: 76px;
  border-radius: 14px;
  border: 2px solid #888;
  background: #4fac58;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

/* ─── REVIEW MODAL MATCHED STYLE ───────────────────────── */
.review-modal-box {
  max-width: 640px;
  border-radius: 86px;
  border: 2px solid #b7b7b7;
  padding: 52px 58px 42px;
}

.review-modal-box .modal-close {
  top: 38px;
  right: 46px;
  font-size: 44px;
  font-weight: 900;
  color: #6b6b6b;
}

.review-modal-box .modal-title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.review-modal-box .form-group label {
  font-size: 19px;
  font-weight: 900;
  color: #666;
  margin-bottom: 8px;
}

.review-modal-box .form-group input,
.review-modal-box .form-group textarea {
  border: 3px solid #ddd;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 16px;
  background: #fff;
}

.review-modal-box .form-group textarea {
  min-height: 120px;
}

.review-modal-box .sp-star {
  font-size: 38px;
}

.review-modal-box #submit-review {
  min-height: 76px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 900;
  background: #4fac58;
}

/* ─── REVIEW FORM ───────────────────────────────────────── */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
}

.req { color: #c0392b; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.star-picker {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.sp-star {
  font-size: 30px;
  cursor: pointer;
  color: #ddd;
  transition: color 0.1s, transform 0.1s;
  user-select: none;
  line-height: 1;
}

.sp-star:hover,
.sp-star.selected { color: #f5c518; }

.sp-star:active { transform: scale(1.2); }

.form-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}

.submit-success {
  text-align: center;
  padding: 24px 0 12px;
  display: none;
}

.submit-success .big-icon {
  font-size: 52px;
  line-height: 1;
}

.submit-success p {
  font-size: 15px;
  color: #555;
  margin-top: 14px;
  line-height: 1.6;
}

/* ─── GALLERY MODAL ─────────────────────────────────────── */
.gallery-counter {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 6px;
  align-self: flex-end;
}

.gallery-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  font-size: 56px;
  opacity: 0.2;
}

.gallery-dots-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 10px 0;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444;
  transition: background 0.2s;
}

.gallery-dot.active { background: #fff; }

.gallery-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.gallery-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.gallery-btn:hover { background: rgba(255,255,255,0.22); }

/* ─── MOBILE MODALS ─────────────────────────────────────── */
@media (max-width: 700px) {
  .profile-modal-box,
  .review-modal-box {
    max-width: 94vw;
    border-radius: 42px;
    padding: 44px 28px 32px;
  }

  .profile-modal-close,
  .review-modal-box .modal-close {
    top: 26px;
    right: 30px;
    font-size: 34px;
  }

  .profile-intro-title,
  .review-modal-box .modal-title {
    font-size: 29px;
    margin-bottom: 36px;
  }

  .profile-intro-body p {
    font-size: 18px;
  }

  .profile-intro-actions {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .profile-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-field label {
    font-size: 23px;
  }

  .profile-field input {
    font-size: 18px;
  }

  .profile-submit-btn,
  .profile-error-box {
    min-width: 100%;
  }

  .profile-success {
    min-height: 440px;
  }

  .profile-success h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .profile-success-main {
    font-size: 21px;
    margin-bottom: 76px;
  }

  .profile-review-btn,
  .profile-done-btn {
    font-size: 18px;
  }
}