/* ===== BOBBY MEHNDI ARTIST - WHITE THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:wght@300;400;600&family=Great+Vibes&display=swap');

:root {
  --gold: #A0722A;
  /* Deeper gold - better on white */
  --gold-light: #C9A84C;
  --gold-dark: #6B4A10;
  --black: #0A0A0A;
  --dark: #1A1A1A;
  --dark2: #2A2A2A;
  --dark3: #333333;
  --crimson: #8B1A2F;

  /* WHITE THEME COLORS */
  --bg-main: #FAFAF8;
  /* Warm white - main background */
  --bg-alt: #F2EDE4;
  /* Warm cream - alternate sections */
  --bg-card: #FFFFFF;
  /* Pure white - cards */
  --text-main: #1A1A1A;
  /* Near black - main text */
  --text-muted: #6B6560;
  /* Warm grey - muted text */
  --text-light: #9B9390;
  /* Light grey - placeholders */
  --border: rgba(160, 114, 42, 0.2);
  /* Gold border */
  --border-hover: rgba(160, 114, 42, 0.5);
  --shadow: rgba(160, 114, 42, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(250, 250, 248, 0.97) !important;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(160, 114, 42, 0.08);
}

.navbar-brand img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(160, 114, 42, 0.4);
}

.navbar-brand span {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(160, 114, 42, 0.2);
  margin-left: 10px;
}

.nav-link {
  color: var(--text-main) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-link:hover::after,
.nav-link.active-link::after {
  left: 14px;
  right: 14px;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23A0722A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: -1;
}

.btn-gold:hover {
  color: #fff;
}

.btn-gold:hover::before {
  transform: translateX(0);
}

.btn-gold-fill {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 32px;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-gold-fill:hover {
  background: transparent;
  color: var(--gold);
}

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 16px auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 40vh;
  background: var(--bg-alt);
  display: flex;
  align-items: flex-end;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(160, 114, 42, 0.06) 0%, transparent 70%);
}

.page-hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.breadcrumb-gold {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ===== STATS ===== */
.stats-section {
  padding: 50px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 2px 16px var(--shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(160, 114, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #fff;
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== SERVICE DETAIL ===== */
.service-detail-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 44px 36px;
  transition: all 0.4s;
  position: relative;
  height: 100%;
  box-shadow: 0 2px 16px var(--shadow);
}

.service-detail-card:hover {
  border-color: var(--border-hover);
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(160, 114, 42, 0.1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-detail-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.service-tag {
  display: inline-block;
  border: 1px solid rgba(160, 114, 42, 0.3);
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 3px 10px;
  margin: 4px 2px 0;
}

/* ===== CAROUSEL ===== */
.carousel-item-custom {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.carousel-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.carousel-item-custom:hover .carousel-bg-img {
  transform: scale(1.05);
  filter: brightness(1);
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 36px 20px 20px;
}

.carousel-overlay h5 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.custom-carousel-btn {
  width: 46px;
  height: 46px;
  background: rgba(160, 114, 42, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.custom-carousel-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 3;
  gap: 12px;
}

@media(max-width:768px) {
  .gallery-grid {
    columns: 2;
  }
}

@media(max-width:480px) {
  .gallery-grid {
    columns: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(160, 114, 42, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: #fff;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(160, 114, 42, 0.3);
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  margin: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(160, 114, 42, 0.05);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 36px;
  position: relative;
  height: 100%;
  box-shadow: 0 2px 16px var(--shadow);
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(160, 114, 42, 0.15);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.95rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-text {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-link {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 9px;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--gold);
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  margin-right: 7px;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(245, 240, 232, 0.25);
  font-size: 0.82rem;
}

/* ===== WHATSAPP ===== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--bg-main);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(160, 114, 42, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 26, 47, 0.05) 0%, transparent 40%);
}

.gold-circle {
  position: absolute;
  border: 1px solid rgba(160, 114, 42, 0.12);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.gc1 {
  width: 560px;
  height: 560px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gc2 {
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
}

.gc3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4rem, 10vw, 7.5rem);
  color: var(--gold);
  line-height: 0.9;
  text-shadow: 0 0 40px rgba(160, 114, 42, 0.2);
  margin-bottom: 0.5rem;
}

.hero-title2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

/* ===== LOGO CIRCLE ===== */
.logo-circle {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(160, 114, 42, 0.3);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(160, 114, 42, 0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
.section-pad {
  padding: 80px 0;
}

.bg-dark2 {
  background: var(--bg-alt);
}

/* was dark — now cream */
.bg-black {
  background: var(--bg-main);
}

/* was black — now warm white */

/* ===== MEHNDI IMG PLACEHOLDER ===== */
.mehndi-img {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(160, 114, 42, 0.3);
  font-size: 3rem;
  width: 100%;
}

/* ===== CONTACT FORM ===== */
.form-field {
  background: var(--bg-main) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-main) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  padding: 14px 18px !important;
  border-radius: 0 !important;
  transition: all 0.3s !important;
}

.form-field::placeholder {
  color: var(--text-light) !important;
}

.form-field:focus {
  background: #fff !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(160, 114, 42, 0.1) !important;
  color: var(--text-main) !important;
}

.form-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ===== PAGE HERO OVERRIDE for white ===== */
.page-hero {
  background: var(--bg-alt);
}

.page-hero h1 {
  color: var(--gold);
}

.breadcrumb-gold {
  color: var(--text-muted);
}

/* ===== LIGHTBOX (stays dark - correct for overlay) ===== */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.lb-overlay.lb-open {
  display: flex;
}

.lb-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lbImage {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: lbFadeIn 0.3s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lb-loader {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}

.lb-loader.active {
  display: flex;
}

.lb-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #C9A84C;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.lb-close:hover {
  background: #C9A84C;
  color: #000;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #C9A84C;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-prev:hover,
.lb-next:hover {
  background: #C9A84C;
  color: #000;
}

.lb-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 10px 24px;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

#lbCaption {
  color: #C9A84C;
}

.lb-counter {
  color: rgba(245, 240, 232, 0.35);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .hero-title {
    font-size: 4rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .lb-prev {
    left: 6px;
    width: 38px;
    height: 38px;
  }

  .lb-next {
    right: 6px;
    width: 38px;
    height: 38px;
  }

  #lbImage {
    max-width: 92vw;
    max-height: 75vh;
  }
}

/* ===== ABOUT PAGE ===== */
.skill-bar-bg {
  height: 3px;
  background: rgba(160, 114, 42, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  border-radius: 2px;
  animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
  from {
    width: 0;
  }
}

.award-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.award-item:last-child {
  border-bottom: none;
}

.award-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(160, 114, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.award-item h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 4px;
}

.award-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(160, 114, 42, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  background: var(--bg-card);
}

.timeline-content h5 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

.timeline-item::before {
  background: rgba(160, 114, 42, 0.15);
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  box-shadow: 0 2px 16px var(--shadow);
}

.contact-info-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(160, 114, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
  background: var(--gold);
  color: #fff;
}

.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--gold);
}

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.whatsapp-cta {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(37, 211, 102, 0.02));
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 40px;
  text-align: center;
}

.whatsapp-cta h4 {
  color: var(--text-main);
}

.whatsapp-cta p {
  color: var(--text-muted);
}