/* =========================================
   ROOT VARIABLES
========================================= */
:root {
  --pink:          #C94F7C;
  --pink-dark:     #B03C6A;
  --pink-light:    #FFF0F8;
  --pink-card:     #FCEAF2;

  --navy:          #3D4FCF;
  --navy-dark:     #2E3DB8;
  --brand-blue:    #2D50A8;

  --blue-light:    #F2F9FF;

  --text:          #1C1C1E;
  --text-body:     #3D3D3D;
  --text-muted:    #6B7280;

  --white:         #FFFFFF;
  --gray-bg:       #F3F4F6;
  --footer-bg:     #E8EFFF;
  --border:        #E5E7EB;

  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;

  --shadow-sm:     4px 6px 10px -2px rgba(0, 0, 0, 0.25);
  --shadow-md:     0 6px 28px rgba(0, 0, 0, 0.11);

  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:         1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* =========================================
   UTILITIES
========================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.section {
  padding: 56px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(14px, 1.8vw, 15px);
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.75;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.btn--nav {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
}
.btn--nav:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.btn--hero-primary {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
}
.btn--hero-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn--hero-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  padding: 12px 26px;
  font-size: 15px;
  backdrop-filter: blur(4px);
}
.btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* =========================================
   LOGO
========================================= */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo__img {
  height: 56px;
  width: auto;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.navbar__nav {
  display: none;
}

@media (min-width: 768px) {
  .navbar__nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
}

.navbar__list {
  display: flex;
  gap: 32px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}
.navbar__link:hover {
  color: var(--pink);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__right .btn--nav {
  display: none;
}

@media (min-width: 768px) {
  .navbar__right .btn--nav {
    display: inline-flex;
  }
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 768px) {
  .navbar__hamburger {
    display: none;
  }
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
  background: var(--white);
}

.navbar__mobile-menu.open {
  display: block;
}

.navbar__mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.navbar__mobile-menu .navbar__link {
  font-size: 16px;
  display: block;
  padding: 4px 0;
}

.navbar__mobile-menu .btn--nav {
  align-self: flex-start;
  margin-top: 6px;
}

/* =========================================
   HERO
========================================= */
.hero {
  padding: 24px 0 0;
  background: var(--white);
}

.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}

@media (min-width: 768px) {
  .hero__card {
    min-height: 460px;
  }
}

@media (min-width: 1024px) {
  .hero__card {
    min-height: 520px;
  }
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 20%;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
  padding: 52px 28px 16px 28px;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .hero__overlay {
    flex-direction: row;
    align-items: flex-end;
    padding: 40px 44px;
  }
}

.hero__content {
  max-width: 460px;
  padding-bottom: 8px;
}

.hero__brand {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  display: none;
}

@media (min-width: 768px) {
  .hero__brand {
    display: block;
  }
}

.hero__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hero__text {
  font-size: clamp(13px, 1.8vw, 15px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 6px;
  display: none;
}

@media (min-width: 768px) {
  .hero__text {
    display: block;
  }
}

.hero__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__watermark-wrap {
  display: none;
}

@media (min-width: 768px) {
  .hero__watermark-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.hero__watermark {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

/* =========================================
   ABOUT
========================================= */
.about__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

@media (min-width: 900px) {
  .about__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about__card {
  background: var(--pink-light);
  border-radius: var(--radius-md);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.about__card--blue {
  background: var(--blue-light);
}

.about__icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__icon--blue {
  background: var(--blue-light);
}

.about__icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.about__card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.about__card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   SERVICES
========================================= */
.services__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .services__grid {
    flex-direction: row;
    align-items: stretch;
  }
}

.service-card {
  background: var(--pink-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}

.service-card--large {
  flex: 1.1;
}

.service-card--white {
  background: #FAFAFD;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}


.services__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--pink-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}

.service-card--white .service-card__icon {
  margin-bottom: 0;
  background: var(--blue-light);
}

.service-card__icon--blue {
  background: var(--blue-light);
}

.service-card__icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-card__body {
  flex: 1;
}

.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   BLOG
========================================= */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 900px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 18px 18px 22px;
}

.blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   CONTACTS
========================================= */
.contacts {
  background: var(--white);
}

.contacts__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .contacts__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.contacts__phone-wrap {
  flex-shrink: 0;
  width: 220px;
  max-width: 220px;
  height: 340px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contacts__phone-wrap {
    width: 240px;
    max-width: 240px;
    height: 380px;
  }
}

.contacts__phone {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.16));
}

.contacts__info {
  flex: 1;
}

.contacts__social-title {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contacts__social-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.7;
  max-width: 400px;
}

.contacts__social-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Social buttons (rectangular with icon + text + handle) */
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  min-width: 170px;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.social-btn--instagram {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: var(--white);
}

.social-btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.social-btn__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.social-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-btn__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.social-btn__handle {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1;
}

.contacts__hours {
  margin-bottom: 0;
}

.contacts__hours-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contacts__hours-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--footer-bg);
  padding-top: 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
    align-items: flex-start;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo-img {
  height: 56px;
  width: auto;
}

.footer__tagline {
  font-size: 14px;
  color: var(--brand-blue);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social-link:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.footer__legal-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer__legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__legal-list p {
  font-size: 13px;
  color: var(--brand-blue);
  line-height: 1.5;
}

.footer__bottom {
  padding: 16px 0;
}

.footer__bottom-inner {
  border-top: 1px solid rgba(45, 80, 168, 0.2);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p,
.footer__policy {
  font-size: 12px;
  color: var(--brand-blue);
}

.footer__policy:hover {
  color: var(--pink);
}
