* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --dark: #0a0e1a;
  --dark2: #111827;
  --text: #e8e0d0;
  --text-muted: #8a8070;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

.cormorant {
  font-family: 'Cormorant Garamond', serif;
}

.lato {
  font-family: 'Lato', sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: transparent;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(232, 224, 208, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  cursor: pointer;
}

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

.lang-buttons {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0e1a;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663385136435/iEHaZKGuxz3ougoDL2wweh/hero_combined-hC86Uf64L8HPYTZwoHHyk6.webp');
  background-size: cover;
  background-position: center;

  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.75) 0%, rgba(10,14,26,0.2) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  text-align: center;
}

.section-tag {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
  white-space: pre-line;
}

.hero-title-3d {
  perspective: 1000px;
  text-shadow: 
    2px 2px 0px rgba(201, 168, 76, 0.3),
    4px 4px 0px rgba(201, 168, 76, 0.2),
    6px 6px 0px rgba(201, 168, 76, 0.1),
    8px 8px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fff 0%, #e8e0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlight "3D" with special styling */
.hero-title-3d::first-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2em;
}

.hero-content p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(232, 224, 208, 0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.9rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.95);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 1rem;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* SECTIONS */
section {
  padding: 5rem 1.5rem;
}

.section-light {
  background: #0a0e1a;
}

.section-dark {
  background: #111827;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  margin-top: 0.5rem;
  border-radius: 2px;
  font-weight: 700;
}

/* SERVICES */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.2);
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* AREAS */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.area-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

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

.area-info {
  padding: 1rem;
  text-align: center;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-top: none;
}

.area-title {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.area-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  border-radius: 2px;
  font-weight: 700;
}

/* WHY SECTION */
.why-section {
  padding: 6rem 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  text-align: center;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ */
.faq-container {
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-toggle {
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  display: none;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CONTACT */
.contact-section {
  padding: 6rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text);
  padding: 0.9rem 1.2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  font-size: 1.5rem;
  min-width: 30px;
}

.info-text {
  color: var(--text-muted);
  line-height: 1.6;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.3);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 2px;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--dark);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* FOOTER */
footer {
  background: #000;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 80px !important;
  }

  .hero-content {
    padding: 1.5rem !important;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .hero-btns button {
    width: 100% !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  section {
    padding: 4rem 1.2rem !important;
  }

  h1 {
    font-size: 2.8rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .areas-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding-top: 70px !important;
  }

  .hero-content {
    padding: 1rem !important;
  }

  .section-tag {
    font-size: 0.6rem !important;
    padding: 0.25rem 0.6rem !important;
    margin-top: 0.3rem !important;
    margin-bottom: 1rem !important;
    white-space: nowrap;
  }

  h1 {
    font-size: 1.8rem !important;
  }

  .hero-content p {
    font-size: 0.9rem !important;
  }

  .lang-buttons {
    gap: 0.3rem;
  }

  .lang-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
  }
}
