@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS VARIABLES & THEME --- */
:root {
  --black: #08080a;
  --dark-bg: #050507;
  --dark-surface: #111115;
  --dark-card: #16161b;
  --gold: #d4a72c;
  --gold-hover: #e5b738;
  --gold-dark: #b0841b;
  --gold-glow: rgba(212, 167, 44, 0.25);
  --white: #ffffff;
  --cream-bg: #fcfbf9;
  --cream-card: #f7f5f0;
  --text-dark: #17171a;
  --text-gray: #52525b;
  --text-light: #a1a1aa;
  --border-light: #e4e4e7;
  --border-dark: #27272a;
  --whatsapp-green: #25d366;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold) !important;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 4px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-view-all:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--gold-glow);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 167, 44, 0.08);
}

/* --- HEADER / NAVBAR --- */
.header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background-color: var(--black);
  border-bottom: 1px solid var(--border-dark);
  height: 76px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: transparent;
  transition: all 0.25s ease;
}

.phone-badge svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.phone-badge:hover {
  background: var(--gold);
  color: var(--black);
}

.phone-badge:hover svg {
  fill: var(--black);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* --- HOME HERO SECTION --- */
.home-hero {
  position: relative;
  background-color: var(--dark-bg);
  background-image: radial-gradient(circle at 75% 50%, rgba(212, 167, 44, 0.08) 0%, transparent 60%);
  padding: 70px 0 80px;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-wrap img:hover {
  transform: scale(1.02);
}

/* --- HOME ICON FEATURE ROW --- */
.feature-row-section {
  background-color: var(--black);
  border-bottom: 1px solid var(--border-dark);
  padding: 30px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 12px;
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.feature-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* --- SECTION COMMON: SERVICES & PRODUCTS CARDS --- */
.section-services, .section-products {
  padding: 64px 0;
  background-color: var(--white);
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 167, 44, 0.4);
}

.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 16px;
  text-align: center;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.service-card-desc {
  font-size: 12.5px;
  color: var(--text-gray);
  margin-top: 6px;
  line-height: 1.45;
}

/* --- PRODUCT CARD STYLES --- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 167, 44, 0.4);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #f4f4f5;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 12px;
}

.product-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px;
}

.product-card-desc {
  font-size: 11.5px;
  color: var(--text-gray);
  margin-top: 2px;
  min-height: 18px;
}

.btn-order-now {
  margin-top: 12px;
  width: 100%;
  padding: 8px 0;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-order-now:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* --- CTA BANNER SECTIONS (HOME, ABOUT, SERVICES, FAQ) --- */
.cta-banner-dark {
  position: relative;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.cta-banner-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.75) 50%, rgba(8, 8, 10, 0.4) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.cta-banner-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}

.cta-banner-btn {
  margin-top: 24px;
}

/* --- INNER PAGES HERO BANNER --- */
.page-hero {
  position: relative;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-dark);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.9) 0%, rgba(5, 5, 7, 0.65) 100%);
}

.page-hero-container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-light);
  margin-top: 8px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span.current {
  color: var(--gold);
  font-weight: 600;
}

/* --- ABOUT US PAGE STYLES --- */
.section-story {
  padding: 64px 0;
  background-color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.story-title span {
  color: var(--gold);
}

.story-text {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-emblem-card {
  background-color: var(--black);
  border: 1px solid rgba(212, 167, 44, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.story-emblem-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.section-about-features {
  padding: 0 0 64px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-feature-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

.about-feature-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* --- FILTER TABS (PRODUCTS & GALLERY) --- */
.filter-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* --- GALLERY PAGE STYLES --- */
.section-gallery {
  padding: 50px 0 70px;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: #f4f4f5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.85) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.gallery-load-more {
  display: flex;
  justify-content: center;
}

/* --- CONTACT US PAGE STYLES --- */
.section-contact {
  padding: 64px 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-wrap {
  padding-right: 16px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.contact-detail-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s ease;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.youtube {
  background-color: #ff0000;
}

.social-btn.whatsapp {
  background-color: #25d366;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- CONTACT FORM --- */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #fafafa;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-dark);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-form-submit {
  width: 100%;
  padding: 13px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-form-submit:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* --- MAP SECTION --- */
.map-section {
  padding: 0 0 64px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.map-card-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.map-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.map-card-sub {
  font-size: 11.5px;
  color: var(--text-gray);
}

.map-card-link {
  display: inline-block;
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  margin-top: 4px;
}

.map-card-link:hover {
  text-decoration: underline;
}

/* --- FAQ ACCORDION STYLES --- */
.section-faq {
  padding: 60px 0 70px;
  background-color: var(--white);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: rgba(212, 167, 44, 0.6);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  background-color: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 14px 20px 18px;
}

.faq-answer p {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- FOOTER STYLES --- */
.footer {
  background-color: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 24px;
  color: var(--text-light);
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-light);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #71717a;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(212, 167, 44, 0.1);
  border: 1px solid rgba(212, 167, 44, 0.35);
  border-radius: 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  margin-left: 4px;
}

.footer-admin-btn svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.footer-admin-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 2px 8px var(--gold-glow);
  transform: translateY(-1px);
}


/* --- MODAL (ORDER / ENQUIRY / GALLERY PREVIEW) --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--white);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.modal-header {
  padding: 16px 20px;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

/* Lightbox Modal */
.lightbox-dialog {
  max-width: 800px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.lightbox-img {
  max-height: 80vh;
  border-radius: var(--radius-md);
  margin: 0 auto;
}
