/* Root Variables */
:root {
  --background: #f7f4f0;
  --foreground: #201a1b;
  --border: #e0d6cf;
  --input: #ffffff;
  --primary: #6f0f14;
  --primary-foreground: #ffffff;
  --secondary: #f1e8e2;
  --secondary-foreground: #4a2a2e;
  --muted: #ede5df;
  --muted-foreground: #8a7a74;
  --success: #c6d9b8;
  --success-foreground: #21320d;
  --accent: #c89a4b;
  --accent-foreground: #2a1707;
  --destructive: #b3312c;
  --destructive-foreground: #ffffff;
  --warning: #e7c97a;
  --warning-foreground: #3a2a06;
  --card: #ffffff;
  --card-foreground: #201a1b;
  --sidebar: #f5efeb;
  --sidebar-foreground: #4a2a2e;
  --sidebar-primary: #6f0f14;
  --sidebar-primary-foreground: #ffffff;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --font-family-body: Inter;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.export-wrapper {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-family-body);
  line-height: 1.7;
  direction: ltr;
  text-align: left;
}

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

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

/* Layout Utilities */
.page-root {
  min-height: 812px;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

h1 {
  font-size: 40px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 20px;
}

p {
  font-size: 15px;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition:
    background-color 280ms ease-in-out,
    color 280ms ease-in-out,
    transform 280ms ease-in-out,
    box-shadow 280ms ease-in-out;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 12px;
  font-weight: 500;
  transition:
    background-color 280ms ease-in-out,
    color 280ms ease-in-out;
}

.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition:
    box-shadow 280ms ease-in-out,
    transform 280ms ease-in-out,
    border-color 280ms ease-in-out;
}

.divider-soft {
  height: 1px;
  width: 72px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
  margin: 24px 0 28px 0;
  transition: opacity 280ms ease-in-out;
}

/* Header Hero */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(247, 244, 240, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 14px rgba(32, 26, 27, 0.04);
}

.nav-bar {
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  cursor: pointer;
}

.logo-mark {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.7),
    var(--primary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-size: 44px;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(32, 26, 27, 0.16);
  transition:
    transform 240ms ease-out,
    box-shadow 240ms ease-out;
}

.logo-sub {
  font-size: 11px;
  color: var(--muted-foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.nav-link-active {
  color: var(--primary);
  font-weight: 600;
  border-bottom-color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(200, 154, 75, 0.2) 0,
      transparent 52%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(111, 15, 20, 0.12) 0,
      transparent 55%
    ),
    var(--background);
}

.hero-inner {
  padding-top: 104px;
  padding-bottom: 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-title {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--primary);
}

.hero-sub {
  font-size: 15px;
  max-width: 460px;
  margin-bottom: 24px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta-pill {
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted-foreground);
}

.hero-image-shell {
  position: relative;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    #f3e7db 0%,
    #e5d4c5 40%,
    #d7c3b2 100%
  );
  padding: 18px;
}

.hero-image-inner {
  border-radius: 32px;
  overflow: hidden;
  background: #d8c7b6;
}

.hero-image-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-arc {
  position: absolute;
  inset: auto 12% -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(200, 154, 75, 0.35);
  border-top-color: transparent;
  border-left-color: transparent;
}
.hero-inner-full {
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-image-full-shell {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background-color: var(--muted);
}

.hero-image-full {
  border-radius: 40px;
  overflow: hidden;
}

.hero-image-full img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.hero-overlay-minimal {
  position: absolute;
  inset: auto 40px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 999px;
  background-color: rgba(247, 244, 240, 0.94);
  border: 1px solid rgba(224, 214, 207, 0.9);
}

.hero-overlay-logo {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.hero-overlay-text {
  font-size: 14px;
  color: var(--muted-foreground);
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.hero-overlay-minimal .btn-primary {
  padding-inline: 24px;
}

/* Sections */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.section-heading p {
  max-width: 540px;
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-text-block p {
  margin-bottom: 12px;
}

.about-image-card {
  border-radius: 32px;
  overflow: hidden;
  background-color: var(--muted);
  padding: 10px;
  position: relative;
}

.about-curve {
  position: absolute;
  inset: 10% -40px auto auto;
  width: 160px;
  height: 80px;
  border-radius: 160px 160px 0 0;
  border: 1px solid rgba(200, 154, 75, 0.28);
  border-bottom: none;
}

.about-image-inner {
  border-radius: 24px;
  overflow: hidden;
}

.about-image-inner img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

/* Products */
.products-section {
  background-color: var(--card);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: 24px;
  background-color: var(--card);
  border: 1px solid rgba(224, 214, 207, 0.8);
  padding: 18px 18px 22px 18px;
}

.product-image {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--muted);
  padding: 18px;
  margin-bottom: 16px;
}

.product-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.product-title {
  font-size: 16px;
  margin-bottom: 4px;
}

.product-text {
  font-size: 13px;
  margin-bottom: 0;
}

/* Why Asala */
.why-section {
  background-color: var(--secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.feature-card {
  border-radius: 24px;
  padding: 24px 22px 22px 22px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 207, 0.7);
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition:
    transform 240ms ease-in-out,
    box-shadow 240ms ease-in-out,
    background-color 240ms ease-in-out,
    filter 240ms ease-in-out;
}

.feature-icon-wrap iconify-icon {
  font-size: 20px;
  color: var(--secondary-foreground);
  transition:
    color 240ms ease-in-out,
    transform 240ms ease-in-out,
    filter 240ms ease-in-out;
}

.feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  margin-bottom: 0;
}

/* Trust & CTA */
.trust-section {
  padding: 96px 0 88px 0;
  text-align: center;
  background: radial-gradient(
    circle at top,
    rgba(200, 154, 75, 0.08),
    transparent 60%
  );
}

.trust-shell {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 28px 30px 28px;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 214, 207, 0.8);
}

.trust-shell .chip {
  margin-bottom: 12px;
}

.trust-shell .divider-soft {
  margin: 12px auto 22px auto;
}

.trust-statement {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.trust-sub {
  max-width: 420px;
  margin: 0 auto;
  font-size: 14px;
}

.cta-shell {
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 18px 16px 18px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(224, 214, 207, 0.9);
  box-shadow: 0 14px 30px rgba(32, 26, 27, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image img {
  max-height: 280px;
}

/* Motion Styles */
.hero-image-full-shell {
  animation: asalaSectionFadeUp 360ms ease-in-out both;
}

#highlights,
#about,
#gallery,
#trust,
#cta {
  animation: asalaSectionFadeUp 380ms ease-in-out both;
}

.product-card,
.feature-card,
.trust-image-card {
  animation: asalaCardStagger 400ms ease-in-out both;
}

.footer-main {
  animation: asalaFooterFade 360ms ease-in-out both;
}

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

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

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

/* Product Slider Styles */
.product-filter-pill {
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: rgba(247, 244, 240, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 260ms ease-in-out,
    color 260ms ease-in-out,
    transform 260ms ease-in-out,
    box-shadow 260ms ease-in-out;
}

.product-filter-pill-active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.product-slider-shell {
  padding: 24px 24px 26px 24px;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(224, 214, 207, 0.9);
  animation: productSliderFadeUp 260ms ease-in-out both;
}

.product-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.product-slider-label {
  font-size: 13px;
  color: var(--muted-foreground);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: rgba(247, 244, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 260ms ease-in-out,
    transform 260ms ease-in-out,
    box-shadow 260ms ease-in-out;
}

.slider-arrow-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow-icon iconify-icon {
  font-size: 16px;
  color: var(--foreground);
  transition:
    color 260ms ease-in-out,
    transform 260ms ease-in-out;
}

.product-slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scroll-behavior: smooth;
}

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

/* Trust New Products Styles */
.new-products-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.new-product-pill {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: rgba(247, 244, 240, 0.9);
  font-size: 13px;
  color: var(--foreground);
  cursor: pointer;
  white-space: nowrap;
}

.new-product-label {
  font-size: 13px;
}

/* Footer Styles */
.footer-container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.22)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.footer-slogan {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  flex: 1;
  white-space: nowrap;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-right-block {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon-shell {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-icon-shell iconify-icon {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.64);
}

footer#contact {
  background-color: var(--primary);
  color: var(--primary-foreground);
  margin-top: 32px;
}


/* =========================================
   About Us Page Styles
   ========================================= */
.page-about {
  /* Layout */
  .section-xl { padding: 104px 0 96px; }
  .section-lg { padding: 88px 0 80px; }
  .section-md { padding: 72px 0 64px; }
  
  .grid-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
  }
  
  .grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  /* Typography Overrides */
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
  }
  
  .heading-hero {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--primary);
  }
  
  .text-lead {
    font-size: 16px;
    color: var(--muted-foreground);
  }

  /* Components */
  .hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
  }

  .hero-image-frame {
    border-radius: 36px;
    overflow: hidden;
    background-color: var(--card);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.1);
    height: 420px;
    position: relative;
    img { transition: transform 0.35s ease-in-out; }
    &:hover img { transform: scale(1.02); }
  }

  .hero-copy-shell { padding-right: 10px; }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .value-card {
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    padding: 22px 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
  }

  .value-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    iconify-icon { font-size: 30px; }
  }

  .story-band {
    background-color: var(--card);
    border-radius: 32px;
    padding: 40px 40px 36px;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }

  .story-image {
    border-radius: 28px;
    overflow: hidden;
    height: 320px;
    background-color: var(--card);
    img { transition: transform 0.3s ease-in-out; }
    &:hover img { transform: scale(1.02); }
  }

  .gallery-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
  }

  .gallery-card {
    border-radius: 22px;
    overflow: hidden;
    background-color: var(--muted);
    height: 190px;
    img { transition: transform 0.3s ease-in-out; }
    &:hover img { transform: scale(1.03); }
  }

  .founder-strip {
    margin-top: 40px;
    padding: 26px 28px;
    border-radius: 24px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
  }
}

/* =========================================
   Products Page Styles
   ========================================= */
.page-products {
  .section-spacing { padding: 64px 0; }
  
  .page-title-area {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }
  
  .page-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
  }
  
  .page-heading {
    font-size: 40px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  
  .filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    background: var(--secondary);
    border: 1px solid transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.2s;
    
    &.active {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }
    
    &:hover:not(.active) {
      background-color: #ebe8e4;
    }
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
    border: none; /* override home styles */
    padding: 0; /* override home styles */
    
    .product-image-wrap {
      position: relative;
      aspect-ratio: 1;
      background-color: var(--secondary);
      border-radius: 24px;
      overflow: hidden;
      transition: transform 0.4s ease;
      
      img { transition: transform 0.6s ease; }
    }
    
    &:hover .product-image-wrap {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      img { transform: scale(1.05); }
    }
    
    .product-info {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    
    .product-name {
      font-size: 18px;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 4px;
    }
    
    .product-price {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
    }
  }
}

/* =========================================
   Contact Page Styles
   ========================================= */
.page-contact {
  .section-xl { padding: 104px 0 96px; }
  
  .grid-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: start;
    margin-top: 64px;
  }
  
  .contact-card {
    background-color: var(--card);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    height: 100%;
  }
  
  .contact-detail-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    iconify-icon { font-size: 20px; }
  }
  
  .form-frame {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
  }
  
  .input-field {
    height: 52px;
    border-radius: 12px;
    background-color: var(--background);
    border: 1px solid var(--border);
    padding: 0 16px;
    font-size: 14px;
    color: var(--foreground);
    width: 100%;
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
  }
  
  .input-field-area {
    height: 140px;
    padding-top: 16px;
    align-items: flex-start;
  }
  
  .btn-submit {
    height: 52px;
    border-radius: 999px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    border: none;
    transition: transform 0.2s, opacity 0.2s;
    
    &:hover {
      opacity: 0.95;
      transform: translateY(-1px);
    }
  }
}

