:root {
  --white: #ffffff;
  --black: #101010;
  --black-soft: #171717;
  --gold: #c7a64a;
  --gold-soft: #e7d39a;
  --pink: #f6e9ef;
  --text-soft: #5f5f5f;
  --shadow: 0 14px 40px rgba(18, 18, 18, 0.12);
  --shadow-lux: 0 20px 45px rgba(10, 10, 10, 0.2);
  --lux-gradient: linear-gradient(120deg, #f8e4af, #c79e3d 45%, #f5e1a5);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 85% 10%, #fff4d5 0%, transparent 28%),
    radial-gradient(circle at 0% 55%, #fdeef5 0%, transparent 35%),
    linear-gradient(180deg, #fff 0%, #fff 35%, #fcf8fa 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1150px, 92%);
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading i {
  margin-left: 8px;
  color: #b99239;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
}

.left {
  text-align: right;
}


.topbar {
  background: linear-gradient(90deg, #0d0d0d, #262626);
  color: #f3e4bd;
  border-bottom: 1px solid #3b3322;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.9rem;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 225, 225, 0.7);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #1f1f1f;
  background: radial-gradient(circle at 20% 20%, #fff4cb, #d4b15a);
  box-shadow: inset 0 0 0 1px #ecd796;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 90%;
  height: 260%;
  transform: rotate(30deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: logoShine 4.5s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  color: #222;
  position: relative;
}

.nav-ic {
  display: none;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid #eadab2;
  background: #fff;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1rem;
  color: #5f4a1e;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
}

.menu-toggle span {
  display: none;
  font-size: 0.84rem;
  font-weight: 800;
}

.nav-overlay {
  display: none;
}

.mobile-nav-head {
  display: none;
}

.menu-close {
  border: 0;
  background: #fff4d3;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #6f551d;
  cursor: pointer;
}

.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("assets/images/hero.png") center/cover no-repeat fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 224, 149, 0.24), transparent 34%);
  animation: pulseGlow 4.2s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(230, 197, 108, 0.25), transparent 30%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.25;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.hero p {
  margin: 0 0 22px;
  font-size: 1.06rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
}

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

.hero-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(6px);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: #ffe6a4;
}

.hero-stats span {
  font-size: 0.88rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--lux-gradient);
  color: #151515;
  box-shadow: 0 12px 28px rgba(191, 152, 64, 0.38);
  background-size: 180% 180%;
  animation: goldFlow 6s ease infinite;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: #252525;
  border: 1px solid #e6d7af;
}

.btn-outline:hover {
  background: #fffaf0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #25d366;
  color: #fff;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: linear-gradient(180deg, #ffffff, #fffdf9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lux);
  border: 1px solid #eee4cf;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(232, 200, 116, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card i {
  font-size: 1.3rem;
  color: #bc9740;
}

.card h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.products {
  background:
    radial-gradient(circle at 100% 15%, #fff2c9 0, transparent 26%),
    linear-gradient(180deg, #fff, #fff7fb);
}

.luxury-lines {
  background: linear-gradient(180deg, #fffdf7, #fff8ed);
}

.lines-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.line-card {
  background: linear-gradient(145deg, #151515, #2a2218);
  border: 1px solid #554224;
  border-radius: 18px;
  color: #f5e7c3;
  padding: 22px;
  box-shadow: var(--shadow-lux);
}

.line-card h3 {
  margin-top: 0;
  color: #ffe2a2;
  font-size: 1.05rem;
}

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

.line-card li {
  margin-bottom: 7px;
}

.catalogs {
  background: linear-gradient(180deg, #fff8ef, #fff);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.catalog-card {
  background: linear-gradient(180deg, #fff, #fffaf1);
  border: 1px solid #ebd8a7;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-lux);
}

.catalog-card h3 {
  margin-top: 0;
}

.catalog-card p {
  color: #6c6559;
  margin-bottom: 16px;
}

.metrics-strip {
  padding: 28px 0 44px;
}

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

.metrics-grid article {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  color: #f5e5bc;
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid #3f3320;
}

.metrics-grid i {
  font-size: 1.2rem;
  color: #d8b461;
}

.metrics-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  color: #fff;
}

.metrics-grid span {
  font-size: 0.9rem;
}

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

.product-card {
  background: linear-gradient(180deg, #fff, #fffdf8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  border: 1px solid #efe2c6;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 22px 52px rgba(27, 22, 14, 0.22);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ddbd68, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-content {
  padding: 18px;
}

.product-content h3 {
  margin: 0 0 8px;
}

.product-content p {
  margin: 0 0 15px;
  color: var(--text-soft);
}

.about-wrap,
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.about-image img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.about-content p {
  margin-top: 0;
  color: #353535;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-list span {
  display: inline-block;
  background: #fff6dd;
  color: #7a5f1e;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.testimonials {
  background: linear-gradient(180deg, #fff, #fcf8fa);
}

.partners {
  background: linear-gradient(180deg, #fffdf7, #fff);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-chip {
  background: #fff;
  border: 1px solid #ecdcae;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 15, 15, 0.08);
}

.faq {
  background: linear-gradient(180deg, #fff, #fff9ef);
}

.luxury-accordion .accordion-item {
  border: 1px solid #e9d8ac;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(18, 18, 18, 0.08);
}

.luxury-accordion .accordion-button {
  font-weight: 700;
}

.luxury-accordion .accordion-button:not(.collapsed) {
  color: #3f2f0b;
  background: #fff4d4;
}

.luxury-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(200, 161, 76, 0.25);
}

.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid #f1ecec;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-lux);
}

.testimonial p {
  margin-top: 0;
  color: #363636;
}

.testimonial cite {
  color: #9d7f35;
  font-style: normal;
  font-weight: 700;
}

.contact-info {
  background: linear-gradient(180deg, #fff, #fffdfa);
  border: 1px solid #f2ecec;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-form {
  background: linear-gradient(180deg, #fff, #fffdfa);
  border: 1px solid #f2ecec;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
}

.contact-luxury {
  background: linear-gradient(145deg, #fff, #fffaf0);
  border: 1px solid #ecdcae;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
}

.contact-luxury h3 {
  margin: 0 0 16px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.lux-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #efdfb4;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lux-item:hover {
  transform: translateY(-4px);
  border-color: #d9bc69;
  box-shadow: 0 10px 25px rgba(38, 31, 18, 0.15);
}

.lux-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(130deg, #ffe8a6, #d3ac4f);
  color: #2d240f;
  font-size: 1.1rem;
}

.lux-item strong {
  display: block;
  color: #1d1d1d;
}

.lux-item span {
  display: block;
  color: #6d6a64;
  font-size: 0.9rem;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e9dfdf;
  border-radius: 12px;
  padding: 12px;
  font-family: inherit;
  margin-bottom: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f0d58d;
  border-color: #e5c46d;
}

.site-footer {
  background:
    radial-gradient(circle at 80% 10%, rgba(211, 173, 80, 0.22), transparent 30%),
    var(--black-soft);
  color: #ebebeb;
  padding-top: 48px;
}

.cta-luxury {
  padding-top: 0;
}

.cta-box {
  background: linear-gradient(140deg, #151515, #2b2418 55%, #171717);
  color: #fff;
  border: 1px solid #4c3b1b;
  border-radius: 22px;
  padding: 34px 20px;
  text-align: center;
  box-shadow: var(--shadow-lux);
}

.cta-box h2 {
  margin: 0 0 8px;
}

.cta-box p {
  margin: 0 0 16px;
  color: #e2d4b7;
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2de174, #1faa55);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 25px rgba(35, 172, 92, 0.45);
  z-index: 130;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  padding: 14px 0;
  border-top: 1px solid #2a2a2a;
  font-size: 0.93rem;
  color: #c7c7c7;
}

.footer-credits {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.credits-text {
  color: #bcbcbc;
}

.credits-link {
  color: #e9c86e;
  font-weight: 700;
  transition: color 0.2s ease;
}

.credits-link:hover {
  color: #ffe29a;
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .lines-wrap,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    min-height: 38px;
    font-size: 0.8rem;
  }

  .site-header {
    top: 38px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: linear-gradient(180deg, #fff, #fff9ee);
    border-left: 1px solid #f1e2b9;
    box-shadow: -10px 0 30px rgba(10, 10, 10, 0.15);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    z-index: 110;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f3ecdb;
  }

  .nav-ic {
    display: inline-block;
    color: #9f7c31;
    font-size: 0.95rem;
  }

  .mobile-nav-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #7f6426;
    font-weight: 800;
    border-bottom: 1px solid #f1e2bb;
    padding-bottom: 10px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.48);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 105;
    display: block;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle span {
    display: inline;
  }

  .about-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 72vh;
    background-attachment: scroll;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@keyframes goldFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes logoShine {
  0% { transform: translate(-180%, -10%) rotate(30deg); }
  60%, 100% { transform: translate(240%, 10%) rotate(30deg); }
}

@media (max-width: 560px) {
  .cards-products,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
