:root {
  --bg: #fff8f2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #2b1d18;
  --muted: #735d56;
  --primary: #8b4b5c;
  --primary-strong: #6e3041;
  --secondary: #f3c9b7;
  --accent: #d7a286;
  --line: rgba(92, 51, 44, 0.12);
  --shadow: 0 24px 70px rgba(94, 57, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 201, 183, 0.8), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(215, 162, 134, 0.35), transparent 22%),
    linear-gradient(180deg, #fff8f2 0%, #fffdf9 45%, #fff4ee 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 248, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(107, 70, 58, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-logo {
  width: 86px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.button.primary {
  color: #fffaf7;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(110, 48, 65, 0.22);
}

.button.secondary {
  border: 1px solid rgba(139, 75, 92, 0.18);
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.86);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
  min-height: auto;
  padding-top: 40px;
}

.hero-copy,
.hero-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1,
.section-heading h2,
.info-card h2,
.why-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Marhey", cursive;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.hero-text,
.section-heading p,
.info-card p,
.why-copy p,
.reason-card p,
.contact-panel p,
.panel-list li,
.service-card li {
  color: var(--muted);
  line-height: 1.9;
}

.hero-text {
  margin: 20px 0 0;
  font-size: 1.12rem;
  max-width: 58ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-points span,
.tag-row span {
  padding: 10px 16px;
  border: 1px solid rgba(139, 75, 92, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-weight: 700;
}

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

.hero-intro-card {
  margin-top: auto;
  padding: 24px 26px;
  border: 1px solid rgba(139, 75, 92, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 239, 0.92));
  box-shadow: 0 18px 36px rgba(98, 62, 53, 0.09);
}

.hero-intro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.hero-intro-lead {
  margin-bottom: 12px !important;
  color: var(--text) !important;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-service-cloud span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(139, 75, 92, 0.08);
  border: 1px solid rgba(139, 75, 92, 0.12);
  color: var(--primary-strong);
  font-weight: 700;
}

.hero-contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(139, 75, 92, 0.12);
}

.hero-contact-strip strong,
.hero-contact-strip span,
.hero-contact-numbers a {
  display: block;
}

.hero-contact-strip strong {
  color: var(--text);
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.hero-contact-strip span {
  color: var(--muted);
}

.hero-contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.hero-contact-numbers a {
  color: var(--primary-strong);
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  max-width: 500px;
}

.hero-image-wrap {
  position: relative;
  margin-bottom: 18px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.hero-logo-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(92, 51, 44, 0.1);
  backdrop-filter: blur(10px);
}

.hero-logo-chip img {
  width: 74px;
  height: 44px;
  object-fit: contain;
}

.hero-logo-chip span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.hero-panel,
.info-card,
.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 239, 0.92)),
    #fff;
}

.panel-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.4;
}

.panel-list {
  margin: 18px 0 0;
  padding: 0 18px 0 0;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.mini-stats article,
.service-card,
.reason-card,
.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(98, 62, 53, 0.08);
}

.mini-stats article {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-stats strong,
.contact-card strong {
  display: block;
  font-size: 1.5rem;
}

.mini-stats span,
.contact-label {
  color: var(--muted);
}

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

.info-card.accent {
  background:
    linear-gradient(180deg, rgba(243, 201, 183, 0.22), rgba(255, 255, 255, 0.9)),
    #fff;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.info-card h2,
.why-copy h2,
.contact-panel h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.services-grid,
.reasons-grid,
.contact-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-photo,
.gallery-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.service-photo {
  height: 220px;
  margin: -22px -22px 18px;
  width: calc(100% + 44px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 201, 183, 0.45), transparent 68%);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(139, 75, 92, 0.12), rgba(243, 201, 183, 0.55));
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 1.25rem;
}

.service-card h3 {
  margin: 18px 0 12px;
  font-size: 1.3rem;
}

.service-card ul {
  margin: 0;
  padding: 0 18px 0 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.reasons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.reason-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section {
  padding-bottom: 110px;
}

.brand-gallery {
  padding-top: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 32px rgba(98, 62, 53, 0.08);
}

.gallery-card img {
  height: 280px;
}

.gallery-card figcaption {
  padding: 18px 20px 22px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 700;
}

.reviews-section {
  padding-top: 32px;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 32px rgba(98, 62, 53, 0.08);
}

.review-card.meta {
  background:
    linear-gradient(180deg, rgba(255, 249, 245, 0.96), rgba(255, 255, 255, 0.92));
}

.review-card p {
  color: var(--muted);
  line-height: 1.9;
}

.review-card p strong {
  color: var(--text);
}

.review-card strong {
  display: block;
  margin-top: 16px;
}

.review-stars {
  margin-bottom: 12px;
  color: #d59f26;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 162, 134, 0.28), transparent 72%);
  pointer-events: none;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 20px;
}

.contact-card {
  display: block;
}

.social-section {
  margin-top: 18px;
}

.social-heading {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(139, 75, 92, 0.14);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(98, 62, 53, 0.1);
}

.social-card:hover .social-icon {
  transform: scale(1.06);
}

.social-card strong,
.social-card span {
  display: block;
}

.social-card strong {
  color: var(--text);
  margin-bottom: 2px;
}

.social-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.social-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.telegram {
  background: #229ed9;
}

.social-icon.x {
  background: #111111;
}

.social-icon.soundcloud {
  background: #ff5500;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2a1713, #4d2b24);
  color: #f9efe9;
  box-shadow: 0 22px 48px rgba(60, 30, 24, 0.22);
}

.footer-brand-block p,
.footer-contact-block a,
.footer-qr-block span {
  color: rgba(255, 244, 238, 0.82);
}

.footer-logo {
  width: min(100%, 260px);
  display: block;
  margin-bottom: 14px;
}

.footer-brand-block p {
  margin: 0;
  line-height: 1.9;
}

.footer-contact-block h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-block a {
  font-weight: 700;
}

.footer-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-qr {
  width: min(100%, 170px);
  border-radius: 22px;
  background: #fff;
  padding: 10px;
}

.floating-mobile-actions {
  position: fixed;
  left: 14px;
  bottom: 16px;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(38, 25, 20, 0.22);
  font-weight: 800;
}

.floating-action i {
  font-size: 1.05rem;
}

.floating-action.call {
  background: linear-gradient(135deg, #7f3e4f, #5e2535);
}

.floating-action.whatsapp {
  background: linear-gradient(135deg, #25d366, #159447);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .intro-grid,
  .services-grid,
  .why-layout,
  .gallery-grid,
  .reviews-grid,
  .social-grid,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    position: static;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-copy,
  .hero-card {
    height: auto;
  }

  .mini-stats,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-contact-numbers {
    text-align: right;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .topbar,
  .hero-image-wrap,
  .hero-panel,
  .info-card,
  .service-card,
  .reason-card,
  .contact-panel,
  .contact-card,
  .gallery-card,
  .mini-stats article,
  .footer {
    border-radius: 22px;
  }

  .topbar {
    padding: 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-card {
    max-width: 100%;
  }

  .section-heading h2,
  .info-card h2,
  .why-copy h2,
  .contact-panel h2,
  .hero-panel h2 {
    font-size: 1.8rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .floating-mobile-actions {
    display: flex;
  }
}
