/* ============================================
   EXOTIC INDIA EVENTS & EMOTIONS
   Primary Gold: #C8A96A | Dark: #1C1C1C | Light: #F5F5F5
============================================ */

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

:root {
  --gold: #C8A96A;
  --gold-light: #e2c98a;
  --gold-dark: #a8893a;
  --dark: #1C1C1C;
  --dark-2: #2a2a2a;
  --light: #F5F5F5;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #e0e0e0;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(200,169,106,0.25);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--dark);
  margin-bottom: 18px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

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

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px auto 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(200,169,106,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

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

.section-pad {
  padding: 100px 0;
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

#header.scrolled {
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.logo-text .tagline {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,28,28,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.9) 0%, rgba(28,28,28,0.6) 50%, rgba(200,169,106,0.15) 100%);
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,169,106,0.15);
  border: 1px solid rgba(200,169,106,0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  background: rgba(28,28,28,0.9);
  border-top: 1px solid rgba(200,169,106,0.3);
}

.hero-stat {
  padding: 24px 36px;
  text-align: center;
  border-left: 1px solid rgba(200,169,106,0.2);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   INTRO SECTION
============================================ */
.intro-section {
  background: var(--light);
  padding: 90px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.intro-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark);
  padding: 28px;
  text-align: center;
  min-width: 160px;
}

.intro-image-badge .years {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.intro-image-badge .years-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.intro-content .section-title { text-align: left; }
.intro-content .section-tag { display: block; }
.intro-content .section-subtitle { margin: 0; text-align: left; }

.intro-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.intro-feature::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C1C1C' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: 'SERVICES';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}

.services-section .section-title { color: var(--white); }
.services-section .section-subtitle { color: rgba(255,255,255,0.5); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.95) 0%, rgba(28,28,28,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}

.service-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gold);
}

.service-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover p {
  max-height: 80px;
  opacity: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,169,106,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 36px;
  color: var(--white);
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section {
  background: var(--light);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: rgba(200,169,106,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
}

.testimonials-section .section-title { color: var(--white); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-size: 60px;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.testimonial-info .name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-info .role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 18px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.t-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,169,106,0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CALL TO ACTION
============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.92) 0%, rgba(200,169,106,0.4) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: #111111;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text .name { font-size: 26px; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.4); }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  margin: 24px 0 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,169,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.95) 0%, rgba(28,28,28,0.5) 100%);
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
}

.page-hero h1 em { color: var(--gold); font-style: italic; }

/* ============================================
   ABOUT PAGE
============================================ */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-imgs {
  position: relative;
}

.story-img-main {
  width: 80%;
  height: 500px;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border: 6px solid var(--white);
}

.story-content .section-tag,
.story-content .section-title { text-align: left; }

.story-content .divider { margin: 0 0 28px; }

.story-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.9;
}

.mv-section {
  background: var(--dark);
  padding: 90px 0;
}

.mv-section .section-title { color: var(--white); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}

.mv-card {
  background: rgba(255,255,255,0.03);
  padding: 56px 48px;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.mv-card:hover {
  background: rgba(200,169,106,0.07);
}

.mv-card h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.team-section {
  padding: 100px 0;
  background: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.team-img {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.team-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,169,106,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social-overlay { opacity: 1; }

.team-social-overlay a {
  width: 40px; height: 40px;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.team-social-overlay a:hover {
  background: var(--white);
}

.team-info {
  padding: 24px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.team-card:hover .team-info { border-color: var(--gold); }

.team-info h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-info .role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   SERVICES PAGE
============================================ */
.services-page-section {
  padding: 100px 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--gray-light);
}

.service-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-img-wrap:hover img { transform: scale(1.04); }

.service-img-label {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-content .section-tag,
.service-content .section-title { text-align: left; }
.service-content .divider { margin: 0 0 24px; }

.service-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.9;
}

.service-highlights {
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}

.service-highlight::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}

/* ============================================
   GALLERY PAGE
============================================ */
.gallery-page-section {
  padding: 80px 0 100px;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  border: 1px solid var(--gray-light);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-page-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-page-item:hover img { transform: scale(1.08); }

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,169,106,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 8px;
}

.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }

.gallery-page-overlay .icon {
  font-size: 36px;
  color: var(--white);
}

.gallery-page-overlay .caption {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--dark);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.9;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-light);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(200,169,106,0.1);
  border: 1px solid rgba(200,169,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-text .value {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--light);
  padding: 56px;
}

.contact-form-wrap h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-wrap .subtitle {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,106,0.1);
}

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

.form-group.full { grid-column: span 2; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.alert {
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(46,213,115,0.1);
  border-left: 3px solid #2ed573;
  color: #1a7a40;
}

.alert-error {
  background: rgba(255,71,87,0.1);
  border-left: 3px solid #ff4757;
  color: #c0392b;
}

.map-section {
  padding: 0 0 100px;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(30%);
}

/* ============================================
   EXPERIENCE STATS (About)
============================================ */
.exp-section {
  background: var(--gold);
  padding: 70px 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.exp-stat {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(28,28,28,0.15);
}

.exp-stat:last-child { border-right: none; }

.exp-stat .num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.exp-stat .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(28,28,28,0.6);
  margin-top: 6px;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .gallery-item.wide { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .intro-grid, .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image-badge { right: 0; bottom: -20px; }
  .story-img-accent { position: static; width: 100%; height: 220px; margin-top: -40px; }
  .story-img-main { width: 100%; }
  .service-item { grid-template-columns: 1fr; gap: 48px; }
  .service-item.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .section-pad { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .intro-features { grid-template-columns: 1fr; }
  .service-highlights { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* PLACEHOLDER IMAGES */
.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a, #1C1C1C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 40px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 4px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
  to { left: 100%; }
}
