/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 15, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(237, 166, 85, 0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#nav.nav-scrolled {
  background: rgba(9, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-logo-icon {
  color: #eda655;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eda655 0%, #e88a2e 100%);
  color: #0f1a2e;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(237, 166, 85, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f3d891 0%, #eda655 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(237, 166, 85, 0.35);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #dce3f0;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.12em;
  border: 1px solid rgba(220, 227, 240, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-light:hover {
  border-color: #dce3f0;
  background: rgba(220, 227, 240, 0.06);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('https://images.pexels.com/photos/7755663/pexels-photo-7755663.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  padding: 120px 6 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 15, 26, 0.82) 0%,
    rgba(15, 26, 46, 0.75) 50%,
    rgba(9, 15, 26, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-tagline {
  opacity: 0.9;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(237, 166, 85, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  color: #eda655;
}

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #eda655;
  font-weight: 500;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: #eda655;
}

/* ===== ABOUT ===== */
.about-section {
  background: #0f1a2e;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(237, 166, 85, 0.3);
  border-radius: 4px;
  z-index: -1;
}

/* ===== SERVICES ===== */
.services-section {
  background: #090f1a;
}

.service-card {
  background: rgba(15, 26, 46, 0.6);
  border: 1px solid rgba(220, 227, 240, 0.06);
  border-radius: 6px;
  padding: 36px 28px;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: rgba(237, 166, 85, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  color: #eda655;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: #0f1a2e;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 15, 26, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

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

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #090f1a;
}

.testimonial-card {
  background: rgba(15, 26, 46, 0.5);
  border: 1px solid rgba(220, 227, 240, 0.06);
  border-radius: 6px;
  padding: 36px 28px;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(237, 166, 85, 0.15);
  font-style: italic;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  background: url('https://images.pexels.com/photos/7750120/pexels-photo-7750120.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center center / cover no-repeat;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: rgba(9, 15, 26, 0.85);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 15, 26, 0.95) 0%, rgba(15, 26, 46, 0.85) 100%);
}

/* ===== CONTACT ===== */
.contact-section {
  background: #0f1a2e;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  color: #eda655;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.map-container:hover {
  opacity: 1;
}

.contact-form-wrapper {
  background: rgba(9, 15, 26, 0.5);
  border: 1px solid rgba(220, 227, 240, 0.08);
  border-radius: 8px;
  padding: 40px 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8fa5cc;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: rgba(15, 26, 46, 0.6);
  border: 1px solid rgba(220, 227, 240, 0.12);
  border-radius: 4px;
  padding: 14px 16px;
  color: #dce3f0;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(143, 165, 204, 0.5);
}

.form-input:focus {
  border-color: rgba(237, 166, 85, 0.5);
  box-shadow: 0 0 0 3px rgba(237, 166, 85, 0.08);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23eda655' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: #0f1a2e;
  color: #dce3f0;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(237, 166, 85, 0.08);
  border: 1px solid rgba(237, 166, 85, 0.25);
  border-radius: 4px;
  color: #eda655;
  font-size: 0.9rem;
  margin-top: 8px;
}

.form-success svg {
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #090f1a;
}

.footer-logo-icon {
  color: #eda655;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 227, 240, 0.06);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-link {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-up {
    opacity: 0;
    transform: translateY(30px);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
  }

  .reveal-up.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-up:nth-child(2) { transition-delay: 0.1s; }
  .reveal-up:nth-child(3) { transition-delay: 0.2s; }
  .reveal-up:nth-child(4) { transition-delay: 0.3s; }
  .reveal-up:nth-child(5) { transition-delay: 0.4s; }
  .reveal-up:nth-child(6) { transition-delay: 0.5s; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-image-wrapper img {
    height: 500px;
  }

  .about-image-accent {
    top: -10px;
    right: -10px;
  }

  .contact-form-wrapper {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn-gold,
  .btn-outline-light {
    padding: 12px 24px;
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
  }

  .cta-section,
  .services-section,
  .testimonials-section,
  .gallery-section,
  .about-section,
  .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
