/* =============================================
   GLJ LTD – Interior Design Services
   Main Stylesheet v1.0
   ============================================= */

/* --- Google Fonts & CSS Variables --- */
@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 {
  --gold:        #c8a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #9a7a45;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --dark-card:   #1e1e1e;
  --light:       #f8f5f0;
  --light-2:     #ede8e0;
  --text-muted:  #888888;
  --white:       #ffffff;
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-border:rgba(200,169,110,0.25);
  --transition:  0.4s cubic-bezier(0.25,0.8,0.25,1);
  --shadow-gold: 0 0 40px rgba(200,169,110,0.15);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
  --radius:      12px;
  --radius-lg:   20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-gold      { color: var(--gold); }
.text-light-muted { color: rgba(255,255,255,0.65); }
.bg-dark-2      { background: var(--dark-2); }
.bg-dark-3      { background: var(--dark-3); }
.bg-light-section { background: var(--light); color: var(--dark); }
.bg-light-section h1,
.bg-light-section h2,
.bg-light-section h3,
.bg-light-section h4 { color: var(--dark); }

.font-serif     { font-family: 'Playfair Display', serif; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* Gold divider line */
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  display: inline-block;
}
.gold-line-left { margin-right: auto; }
.gold-line-center { margin: 0 auto; }

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-badge::before, .section-badge::after {
  content:'';
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-gold::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(200,169,110,0.4); color: var(--dark); }
.btn-gold > * { position: relative; z-index: 1; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(200,169,110,0.35);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(200,169,110,0.4);
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.brand-text-top {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
}
.brand-text-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content:'';
  position: absolute;
  bottom: 2px; left: 16px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }

.nav-cta-mobile {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.nav-cta-mobile:hover {
  background: var(--gold);
  color: var(--dark);
}

.navbar-toggler {
  border: 1.5px solid rgba(200,169,110,0.5);
  border-radius: 4px;
  padding: 6px 10px;
}
.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='rgba%28200%2C169%2C110%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .nav-cta-mobile { display: inline-flex; margin-top: 12px; }
  .navbar-collapse {
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 12px;
    border: 1px solid var(--glass-border);
  }
}

/* =============================================
   HERO SLIDER
   ============================================= */
#heroCarousel { position: relative; }

.hero-slide {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-item.active .hero-slide-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s forwards;
}
.hero-badge::before {
  content:''; width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-para {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

.carousel-controls {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}
.carousel-controls button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.1);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.carousel-controls button:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.carousel-indicators-custom {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
  margin: 0;
}
.carousel-indicators-custom button {
  width: 32px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  transition: var(--transition);
}
.carousel-indicators-custom button.active {
  background: var(--gold);
  width: 64px;
}

/* =============================================
   FLOATING STATS BAR
   ============================================= */
.stats-bar {
  position: relative;
  z-index: 5;
  margin-top: -60px;
}
.stats-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(200,169,110,0.2);
  height: 60px;
  align-self: center;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 64px; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 16px;
}
.bg-light-section .section-subtitle { color: rgba(17,17,17,0.6); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-img-wrap {
  position: relative;
  perspective: 1000px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.about-img-main:hover { transform: rotateY(0deg) rotateX(0deg); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(200,169,110,0.3);
}
.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}
.about-badge-float span {
  font-size: 0.72rem;
  color: rgba(17,17,17,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   MISSION VISION PHILOSOPHY
   ============================================= */
.mvp-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mvp-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.mvp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
  background: rgba(200,169,110,0.05);
}
.mvp-icon {
  width: 56px; height: 56px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.mvp-card:hover .mvp-icon {
  background: var(--gold);
  color: var(--dark);
}
.mvp-card h4 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.mvp-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; }

/* =============================================
   SERVICES
   ============================================= */
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  transform-style: preserve-3d;
  perspective: 800px;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(1deg);
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--shadow-gold);
}
.service-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.service-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200,169,110,0.2);
  line-height: 1;
}
.service-body { padding: 28px 28px 32px; }
.service-body h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card:hover .service-body h4 { color: var(--gold); }
.service-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; color: var(--gold); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--dark-2); }

.why-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-gold);
}
.why-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  transform: rotateY(360deg);
}
.why-card h5 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* =============================================
   DESIGN PROCESS
   ============================================= */
.process-section { background: var(--light); }
.process-section .section-title,
.process-section h3 { color: var(--dark); }
.process-section .section-subtitle { color: rgba(17,17,17,0.6); }

.process-step {
  position: relative;
  padding-top: 20px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(200,169,110,0.15);
  line-height: 1;
  margin-bottom: -20px;
  transition: color 0.4s;
}
.process-card {
  background: var(--white);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.process-card::after {
  content:'';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.process-card:hover::after { transform: scaleX(1); }
.process-card:hover .step-number { color: rgba(200,169,110,0.4); }

.process-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(200,169,110,0.3);
}
.process-card h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 14px; }
.process-card p { font-size: 0.9rem; color: rgba(17,17,17,0.6); line-height: 1.8; }

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.4;
  padding-top: 60px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--dark-2); }

.accordion-item {
  background: transparent;
  border: 1px solid rgba(200,169,110,0.15) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 16px;
  overflow: hidden;
}
.accordion-button {
  background: var(--dark-card) !important;
  color: var(--white) !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 24px 28px;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: rgba(200,169,110,0.08) !important;
  color: var(--gold) !important;
}
.accordion-button::after {
  filter: invert(1);
}
.accordion-button:not(.collapsed)::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c8a96e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  background: rgba(200,169,110,0.03);
  border-top: 1px solid rgba(200,169,110,0.15);
  padding: 28px;
}
.accordion-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.accordion-body p:last-of-type { margin-bottom: 0; }

.faq-cta-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.faq-cta-box h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.faq-cta-box p { color: rgba(17,17,17,0.75); margin-bottom: 28px; font-size: 1rem; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--dark); }

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .contact-icon {
  background: var(--gold);
  color: var(--dark);
}
.contact-info-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.contact-info-text a { color: rgba(255,255,255,0.7); }
.contact-info-text a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-control, .form-select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(200,169,110,0.2) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  padding: 14px 18px !important;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15) !important;
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

/* =============================================
   MAP EMBED PLACEHOLDER
   ============================================= */
.map-placeholder {
  height: 300px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.map-placeholder i { font-size: 2rem; color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(200,169,110,0.15);
  padding-top: 80px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.8;
}
.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content:'';
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a:hover::before { width: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-links a {
  width: 40px; height: 40px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 60px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a { color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 420px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 20%, transparent 80%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.page-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.breadcrumb-item, .breadcrumb-item a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-divider { color: rgba(255,255,255,0.3); }

/* =============================================
   GOLD SHIMMER DECORATION
   ============================================= */
.gold-shimmer-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* =============================================
   3D CARD TILT EFFECT
   ============================================= */
.tilt-card { transform-style: preserve-3d; transition: transform 0.1s ease; }

/* =============================================
   DECORATIVE ELEMENTS
   ============================================= */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.1);
  pointer-events: none;
}

/* =============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-para { font-size: 0.95rem; }
  .stats-card { padding: 28px 20px; }
  .stat-divider { display: none; }
  .carousel-controls { bottom: 40px; right: 20px; }
  .carousel-indicators-custom { left: 20px; }
  .about-badge-float { right: 0; bottom: -10px; }
  .faq-cta-box { padding: 32px 24px; }
  .contact-form-card, .contact-info-card { padding: 28px 20px; }
}

@media (max-width: 575px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-gold, .hero-btns .btn-outline-gold { text-align: center; justify-content: center; }
  .process-connector { display: none; }
}
