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

:root {
  --navy: #1a2e44;
  --navy-dark: #0f1e2e;
  --navy-mid: #243855;
  --teal: #2d7d7d;
  --teal-light: #3a9999;
  --cream: #f8f4ef;
  --cream-dark: #ede9e4;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b7280;
  --border: #e5e0d8;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .14);
  --transition: 0.25s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

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

/* ================================================================
   TYPOGRAPHY
================================================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 68, .4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-text {
  background: transparent;
  color: var(--teal);
  border: none;
  padding: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-text:hover {
  color: var(--navy);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ================================================================
   ANNOUNCEMENT BAR
================================================================ */
.announcement-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.announcement-cta {
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 1px;
  transition: opacity var(--transition);
}

.announcement-cta:hover {
  opacity: 0.75;
}

/* ================================================================
   HEADER / NAV
================================================================ */
.site-header {
  position: sticky;
  top: 37px;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links > li > a:hover {
  color: var(--navy);
  background: var(--cream);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: dropFade .18s ease;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-links > li:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background: var(--cream);
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--navy-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 30, 46, .85) 40%, rgba(15, 30, 46, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 24px;
  animation: heroIn .7s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
}

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

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  color: var(--white);
}

/* ================================================================
   TRUST SECTION
================================================================ */
.trust-section {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-item {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: var(--cream-dark);
}

.trust-icon {
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 14px;
}

.trust-item h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section {
  padding: 96px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-text .section-title {
  margin-bottom: 16px;
}

.about-text .section-body strong {
  color: var(--navy);
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section {
  padding: 96px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* ================================================================
   FOCUS SECTION
================================================================ */
.focus-section {
  padding: 96px 0;
  background: var(--navy);
}

.focus-section .section-eyebrow {
  color: var(--teal-light);
}

.focus-section .section-title {
  color: var(--white);
}

.focus-section .section-intro {
  color: rgba(255, 255, 255, .7);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
}

.focus-item {
  background: var(--navy-mid);
  padding: 32px 28px;
  transition: background var(--transition);
}

.focus-item:hover {
  background: var(--navy-dark);
}

.focus-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.focus-item p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: var(--teal);
  padding: 72px 24px;
  color: var(--white);
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--teal);
}

/* ================================================================
   INSTAGRAM GALLERY
================================================================ */
.gallery-section {
  padding: 96px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 68, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
}

/* ================================================================
   FAQ SECTION
================================================================ */
.faq-section {
  padding: 96px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
}

.faq-header .section-title {
  margin-bottom: 0;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--teal);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-answer.open {
  display: block;
  animation: fadeIn .2s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   GET STARTED / CONTACT SECTION
================================================================ */
.get-started-section {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.get-started-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.get-started-text .section-eyebrow {
  color: var(--teal-light);
}

.get-started-text .section-title {
  color: var(--white);
}

.steps-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.steps-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  list-style: disc;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .8);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--white);
}

/* CONTACT FORM */
.get-started-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.get-started-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 125, 125, .15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

/* ================================================================
   SITE FOOTER
================================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a,
.footer-col li span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
  transition: color var(--transition);
}

.footer-col li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .35);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .announcement-bar { font-size: 0.72rem; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 24px; border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 12px; display: block; }
  .nav-cta { margin: 12px 24px; display: block; text-align: center; }
  .hero { min-height: 500px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  .get-started-layout { grid-template-columns: 1fr; gap: 48px; }
  .get-started-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}


@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .focus-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SERVICE PRICE TAG
================================================================ */
.service-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  margin: 4px 0 8px;
}

.service-price span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
}

.service-card--highlight {
  border-color: var(--teal-light);
  box-shadow: 0 4px 24px rgba(45, 125, 125, .12);
}

/* ================================================================
   CTA MESSENGER BUTTONS
================================================================ */
.cta-messengers {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cta-btn {
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.cta-btn--tg {
  background: #2ca5e0;
  color: #fff;
  border-color: #2ca5e0;
}
.cta-btn--tg:hover { background: #1a8bbf; border-color: #1a8bbf; transform: translateY(-2px); }

.cta-btn--wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.cta-btn--wa:hover { background: #1ab450; border-color: #1ab450; transform: translateY(-2px); }

.cta-btn--vb {
  background: #7360f2;
  color: #fff;
  border-color: #7360f2;
}
.cta-btn--vb:hover { background: #5b4bd4; border-color: #5b4bd4; transform: translateY(-2px); }

/* ================================================================
   ANNOUNCEMENT BAR — button style override
================================================================ */
.announcement-bar button.announcement-cta {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 1px;
  transition: opacity var(--transition);
}
.announcement-bar button.announcement-cta:hover { opacity: 0.75; }

/* ================================================================
   MESSENGER POPUP MODAL
================================================================ */
.messenger-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.messenger-modal.open {
  display: flex;
}

.messenger-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 46, .65);
  backdrop-filter: blur(4px);
}

.messenger-modal-box {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  animation: modalIn .25s ease both;
  z-index: 1;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.messenger-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.messenger-modal-close:hover { color: var(--navy); }

.messenger-modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}

.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--transition);
  text-decoration: none;
}

.messenger-btn--tg  { background: #2ca5e0; }
.messenger-btn--tg:hover  { background: #1a8bbf; transform: translateY(-2px); }
.messenger-btn--wa  { background: #25d366; }
.messenger-btn--wa:hover  { background: #1ab450; transform: translateY(-2px); }
.messenger-btn--vb  { background: #7360f2; }
.messenger-btn--vb:hover  { background: #5b4bd4; transform: translateY(-2px); }

@media (max-width: 480px) {
  .messenger-modal-box { padding: 40px 24px 32px; }
  .cta-messengers { flex-direction: column; }
  .cta-btn { width: 100%; justify-content: center; }
}

