/* ==============================================
   MAIDAM GOLD - PREMIUM DESIGN SYSTEM
   Bright & Professional Theme
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand — Bright Gold Palette */
  --gold: #C5960C;
  --gold-bright: #E8B00E;
  --gold-light: #FBE5A0;
  --gold-lighter: #FDF3D7;
  --gold-dark: #9A7400;
  --gold-shimmer: #F8E077;
  --gold-gradient: linear-gradient(135deg, #E8B00E 0%, #C5960C 50%, #D4A520 100%);
  --gold-gradient-soft: linear-gradient(135deg, #FDF3D7 0%, #FBE5A0 100%);

  /* Backgrounds — Bright & Warm */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAF8;
  --bg-tertiary: #F5F3EE;
  --bg-warm: #FFF9ED;
  --bg-hero: linear-gradient(165deg, #FFF9ED 0%, #FFFFFF 40%, #FDF3D7 100%);
  --bg-dark: #1A1710;
  --bg-dark-soft: #2A2518;

  /* Text */
  --text-primary: #1A1710;
  --text-secondary: #5C5647;
  --text-muted: #9C9588;
  --text-light: #B8B0A4;
  --text-on-gold: #1A1710;
  --text-on-dark: #FFFFFF;

  /* Borders */
  --border-light: #EDE9E0;
  --border-medium: #D9D3C7;
  --border-gold: rgba(197, 150, 12, 0.25);
  --border-gold-hover: rgba(197, 150, 12, 0.5);

  /* Utility */
  --success: #16A34A;
  --error: #DC2626;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Shadows — Warm tones */
  --shadow-sm: 0 2px 8px rgba(26, 23, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 23, 16, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 23, 16, 0.1);
  --shadow-xl: 0 24px 64px rgba(26, 23, 16, 0.12);
  --shadow-gold: 0 8px 32px rgba(197, 150, 12, 0.2);
  --shadow-gold-lg: 0 16px 48px rgba(197, 150, 12, 0.25);
  --shadow-card: 0 1px 3px rgba(26, 23, 16, 0.04), 0 6px 16px rgba(26, 23, 16, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(26, 23, 16, 0.06), 0 16px 40px rgba(26, 23, 16, 0.1);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease-out-expo); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* Selection */
::selection {
  background: var(--gold-light);
  color: var(--text-primary);
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.15;
}

h4, h5 {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.4;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.8; }

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  background: var(--gold-lighter);
  padding: 8px 20px;
  border-radius: 100px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
}

/* ========================
   TOP BAR
   ======================== */
.top-bar {
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .hours {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .contact-links {
  display: flex;
  gap: 24px;
}

.top-bar a {
  color: var(--text-on-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.top-bar a:hover { opacity: 0.7; }

/* ========================
   HEADER
   ======================== */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out-expo);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-gold);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  transition: all 0.4s var(--ease-out-expo);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: white;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 2px 8px rgba(197, 150, 12, 0.3);
}

.logo:hover .logo-mark {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.logo-text h1 {
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.logo-text p {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 0;
  align-items: center;
}

nav ul li a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out-expo);
}

nav ul li a:hover {
  color: var(--text-primary);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 24px;
}

nav ul li a.active {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  vertical-align: top;
  margin-left: 2px;
  line-height: 1.4;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-wishlist {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}
.header-wishlist:hover {
  background: var(--gold-lighter);
  color: var(--gold);
}
.header-wishlist-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.header-wishlist-count.show {
  display: flex;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
  position: relative;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(197, 150, 12, 0.25);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s var(--ease-out-expo);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-sm);
}

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

.btn-white {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-sm);
}

.btn-dark:hover {
  background: var(--bg-dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 18px 44px; font-size: 14px; }

/* ========================
   REVEAL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================
   FORM ELEMENTS
   ======================== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group label .required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out-expo);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 150, 12, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ========================
   PAGE BANNER
   ======================== */
.page-banner {
  background: var(--bg-hero);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 150, 12, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner h1 {
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-banner .breadcrumb a { color: var(--gold); opacity: 0.7; }
.page-banner .breadcrumb a:hover { opacity: 1; }
.page-banner .breadcrumb span { color: var(--text-muted); }

/* ========================
   FOOTER
   ======================== */
footer {
  background: var(--bg-dark);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 176, 14, 0.2);
}

.footer-col p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-col .contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-col .contact-item i {
  color: var(--gold-bright);
  margin-top: 4px;
  min-width: 16px;
  font-size: 13px;
}

.footer-col .contact-item span {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 15px;
  transition: all 0.4s var(--ease-out-expo);
}

.footer-social a:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(232, 176, 14, 0.1);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

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

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1A1710 0%, #2A2518 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 9999;
    padding: 60px 32px 30px;
    overflow-y: auto;
  }

  nav ul.active {
    display: flex;
    animation: menuFadeIn 0.3s ease;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Logo in mobile menu */
  nav ul::before {
    content: 'MAIDAM GOLD';
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(197, 150, 12, 0.25);
    width: 100%;
    max-width: 280px;
    text-align: center;
    flex-shrink: 0;
  }

  nav ul li {
    width: 100%;
    max-width: 280px;
    border-bottom: 1px solid rgba(197, 150, 12, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
    margin-bottom: 16px;
  }

  nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 14px 16px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 6px;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: var(--gold-bright);
    background: rgba(197, 150, 12, 0.1);
  }

  nav ul li a::after { display: none; }

  nav ul li a.active {
    font-weight: 700;
    color: var(--gold);
  }

  /* Contact info at bottom of mobile menu */
  nav ul::after {
    content: '019-955 4604';
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    padding-top: 16px;
    border-top: 1px solid rgba(197, 150, 12, 0.15);
    width: 100%;
    max-width: 280px;
    text-align: center;
    flex-shrink: 0;
  }

  /* Mobile menu toggle - make X white when menu open */
  .mobile-menu-toggle.active span {
    background: #fff;
  }

  .header-cta .btn-whatsapp { display: none; }

  .top-bar .hours { display: none; }
  .top-bar .contact-links { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 24px; }
}
