/* ==================================================
   1. Reset & Global Styles
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --burgundy: #68152d;
  --burgundy-dark: #3d0d1b;
  --cream: #f7eee7;
  --white: #ffffff;
  --text: #24171b;
  --muted: #745e66;
  --border: #eaded9;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background-color: #fffdfb;
  line-height: 1.7;
}

html[lang="ar"] body {
  font-family: "Cairo", sans-serif;
}

html[lang="en"] body {
  font-family: "Inter", sans-serif;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

/* ==================================================
   2. Reusable Classes
================================================== */
.container {
  width: min(1160px, 90%);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-cream {
  background-color: var(--cream);
}

.section-dark {
  background-color: var(--burgundy-dark);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
  margin-top: 10px;
  color: var(--burgundy-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.25;
}

.section-heading p,
.about-content > p,
.contact-info > p {
  margin-top: 16px;
  color: var(--muted);
}

.label {
  display: inline-block;
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-light {
  color: #f0d6ce;
}

.light-heading h2,
.light-heading p {
  color: var(--white);
}

.light-heading p {
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid var(--burgundy);
  color: var(--white);
  background-color: var(--burgundy);
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  border-color: var(--burgundy-dark);
  background-color: var(--burgundy-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  color: var(--white);
  background-color: var(--burgundy);
}

.btn-light {
  color: var(--burgundy-dark);
  border-color: var(--white);
  background-color: var(--white);
}

.btn-light:hover {
  color: var(--burgundy-dark);
  border-color: var(--cream);
  background-color: var(--cream);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.85rem;
}

.full-width {
  width: 100%;
}

/* ==================================================
   3. Navigation Bar
================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 253, 251, 0.96);
  border-bottom: 1px solid rgba(104, 21, 45, 0.12);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

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

html[lang="en"] .hero-content h1 {
  font-family: "Playfair Display", serif;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  color: #4f3c43;
  font-size: 0.86rem;
  font-weight: 700;
  transition: 0.3s ease;
}

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

html[dir="rtl"] .nav-links a::after {
  right: 0;
}

html[dir="ltr"] .nav-links a::after {
  left: 0;
}

.nav-links a:hover {
  color: var(--burgundy);
}

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

/* ==================================================
   4. Hero Section
================================================== */
.hero {
  background: linear-gradient(135deg, var(--cream), #fffdfb 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.hero-content h1 {
  max-width: 680px;
  margin-top: 14px;
  color: var(--burgundy-dark);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.08;
}

.hero-content > p {
  max-width: 610px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 40px;
}

.hero-stats div {
  display: grid;
  gap: 2px;
}

.hero-stats strong {
  color: var(--burgundy-dark);
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -18px;
  bottom: 24px;
  width: 48%;
  background-color: var(--burgundy);
}

html[dir="rtl"] .hero-image::before {
  left: -18px;
}

html[dir="ltr"] .hero-image::before {
  right: -18px;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

/* ==================================================
   5. About Section
================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d3840;
}

.check-list i {
  margin-top: 6px;
  color: var(--burgundy);
}

/* ==================================================
   6. Services / Collections
================================================== */
.cards-grid {
  display: grid;
  gap: 24px;
}

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

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

.fashion-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--white);
  transition: 0.3s ease;
}

.fashion-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(61, 13, 27, 0.08);
}

.fashion-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  background-color: var(--cream);
}

.card-content {
  padding: 24px;
}

.card-content > i {
  margin-bottom: 12px;
  color: var(--burgundy);
  font-size: 1.15rem;
}

.card-content h3 {
  color: var(--burgundy-dark);
  font-size: 1.1rem;
}

.card-content p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==================================================
   7. Features
================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.09);
}

.feature > i {
  margin-top: 5px;
  color: #efcec4;
  font-size: 1.15rem;
}

.feature h3 {
  color: var(--white);
  font-size: 1.02rem;
}

.feature p {
  margin-top: 5px;
  color: #ddcbd0;
  font-size: 0.88rem;
}

/* ==================================================
   8. Testimonials
================================================== */
.testimonial-card {
  padding: 28px;
  border: 1px solid var(--border);
  background-color: var(--white);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(61, 13, 27, 0.08);
}

.stars {
  color: #b7812b;
  letter-spacing: 3px;
}

.testimonial-card p {
  min-height: 100px;
  margin-top: 16px;
  color: var(--muted);
}

.testimonial-card h3 {
  margin-top: 18px;
  color: var(--burgundy-dark);
  font-size: 0.95rem;
}

/* ==================================================
   9. Pricing
================================================== */
.price-card {
  position: relative;
  padding: 34px 28px;
  border: 1px solid #dfcdc6;
  background-color: var(--white);
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(61, 13, 27, 0.08);
}

.featured-card {
  border: 2px solid var(--burgundy);
}

.badge {
  position: absolute;
  top: 14px;
  padding: 5px 9px;
  color: var(--white);
  background-color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 800;
}

html[dir="rtl"] .badge {
  left: 14px;
}

html[dir="ltr"] .badge {
  right: 14px;
}

.price-card h3 {
  color: var(--burgundy-dark);
}

.price {
  margin-top: 12px;
  color: var(--burgundy-dark);
  font-size: 2.7rem;
  font-weight: 800;
}

.price-card > p {
  margin-top: 10px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: #4c3840;
}

.price-card li i {
  color: var(--burgundy);
}

/* ==================================================
   10. FAQ
================================================== */
.faq-container {
  max-width: 850px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--border);
  background-color: var(--white);
}

.faq-list summary {
  color: var(--burgundy-dark);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

/* ==================================================
   11. Contact
================================================== */
.contact-section {
  background-color: var(--burgundy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2,
.contact-info > p {
  color: var(--white);
}

.contact-info > p {
  opacity: 0.82;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--white);
}

.contact-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--burgundy-dark);
  background-color: var(--cream);
}

.contact-form {
  padding: 32px;
  background-color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--burgundy-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d9c5cc;
  outline: none;
  color: var(--text);
  background-color: var(--white);
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(104, 21, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* ==================================================
   12. Footer
================================================== */
.site-footer {
  padding: 70px 0 24px;
  color: #d9c4ca;
  background-color: #220912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin-top: 15px;
  color: #b79fa6;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-grid ul {
  display: grid;
  gap: 9px;
}

.footer-grid a {
  transition: 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background-color: #3b1420;
}

.social-links a:hover {
  color: var(--burgundy-dark);
  background-color: var(--cream);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid #4b1c29;
  color: #987e86;
  font-size: 0.82rem;
}

/* ==================================================
   13. Responsive Design
================================================== */
@media (max-width: 1100px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .navbar nav {
    order: 3;
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
  }

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

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

  .hero-content > p {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

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

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

@media (max-width: 760px) {
  .section {
    padding: 76px 0;
  }

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

  .pricing-grid {
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(92%, 1160px);
  }

  .section {
    padding: 62px 0;
  }

  .site-header {
    position: static;
  }

  .navbar {
    flex-direction: column;
  }

  .logo img {
    width: 100px;
    height: auto;
  }

  .nav-links {
    gap: 12px 15px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .navbar > .btn-small {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.65rem;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-image::before {
    display: none;
  }

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

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

  .contact-form {
    padding: 22px 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
