:root {
  --primary-color: #D4AF37;
  --secondary-color: #FFD700;
  --accent-color: #B8860B;
  --light-bg: #1a1a1a;
  --white: #000000;
  --text-dark: #D4AF37;
  --text-muted: #B8860B;
  --border-light: rgba(212, 175, 55, 0.2);
  --black-bg: #000000;
  --dark-bg: #0a0a0a;
  --navbar-bg: #111111;
  --footer-bg: #0f0f0f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #0f0f0f 50%, #141414 75%, #0a0a0a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out;
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}
.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}
.slide-in-left-delay {
  animation: slideInLeft 0.8s ease-out 0.3s both;
}
.fade-in-delay {
  animation: fadeIn 1s ease-out 0.2s both;
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(.23,1.02,.77,1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px);}
  to { opacity: 1; transform: translateX(0);}
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px);}
  to { opacity: 1; transform: translateX(0);}
}

/* Navbar */
.navbar {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--secondary-color) !important;
}
.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--black-bg);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fixed Hamburger Menu Styles */
.navbar-toggler {
  border: 1px solid var(--primary-color);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-toggler:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
  border-color: var(--secondary-color);
  outline: none;
}

/* Hamburger icon container */
.navbar-toggler-icon {
  background-image: none;
  width: 20px;
  height: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger lines */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

/* Middle line */
.navbar-toggler-icon {
  background-color: var(--primary-color);
  height: 2px;
  width: 100%;
  position: relative;
}

/* Hover effect for hamburger bars */
.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background-color: var(--secondary-color);
}

/* Mobile dropdown menu */
.navbar-collapse {
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

/* Animation for hamburger menu when active */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--secondary-color);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
  background-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 5s infinite;
  z-index: 1;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease-out, glow 2s ease-in-out infinite alternate;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.hero-title:hover {
  transform: scale(1.02);
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 40px rgba(212, 175, 55, 0.7);
}
.hero-highlight {
  color: var(--secondary-color);
  display: block;
  font-size: 2.5rem;
  animation: pulse 2s infinite;
}
.hero-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  transition: color 0.3s ease;
}
.hero-text:hover {
  color: var(--text-dark);
}
.hero-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
  margin: 0 auto;
  display: block;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  filter: brightness(0.9);
  border: 2px solid var(--primary-color);
}
.hero-img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
  filter: brightness(1.1);
  border-color: var(--secondary-color);
}

/* Scroll Down Animation */
.scroll-down-anim {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.85;
  z-index: 10;
  pointer-events: none;
  animation: fadeIn 1.5s 1s both;
}
.scroll-down-text {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: bounceText 2s infinite;
}
.scroll-down-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  animation: bounceArrow 1.2s infinite;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(10px);}
}
@keyframes bounceText {
  0%, 100% { opacity: 0.85;}
  50% { opacity: 1;}
}

/* Logo Section */
.logo-section {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
}
.logo-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.logo-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: var(--dark-bg);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-light);
}
.logo-item img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0) saturate(100%) invert(80%) sepia(67%) saturate(461%) hue-rotate(12deg) brightness(92%) contrast(87%);
}
.logo-item img:hover {
  opacity: 1;
}

.logo-stats {
  gap: 2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.logo-stat {
  font-size: 1.08rem;
  color: var(--primary-color);
  background: var(--dark-bg);
  border-radius: 6px;
  padding: 0.45rem 1.2rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.07);
  border: 1px solid var(--border-light);
}
.logo-stat i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* Sections */
section {
  position: relative;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

/* Services */
.service-card {
  background: var(--dark-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-light);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-icon i {
  font-size: 1.8rem;
  color: var(--black-bg);
}
.service-card h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Why Section */
.why-section {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
}
.why-photo {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(212, 175, 55, 0.10);
  object-fit: cover;
  margin: 0 auto;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}
.feature-icon i {
  font-size: 1.3rem;
  color: var(--black-bg);
}
.feature-content h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.feature-content p {
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  font-size: 1.3rem;
}

/* CTA Section */
.cta-box {
  background: var(--dark-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-light);
}
.cta-content p {
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0;
}
.cta-content h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

/* Testimonials */
.testimonials {
  margin: 2.5rem 0;
}
.testimonials-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.testimonials-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--dark-bg);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(212, 175, 55, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 260px;
  max-width: 410px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 0;
  border: 1px solid var(--border-light);
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-quote {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.1rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* FAQ */
.faq-section {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
}
.faq-item {
  background: var(--dark-bg);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}
.faq-item:hover {
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.1);
}
.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-dark);
}
.faq-question i {
  color: var(--primary-color);
  font-size: 0.9rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(.23,1.02,.77,1), opacity 0.3s;
  padding: 0 1.5rem;
  background: var(--dark-bg);
  color: var(--text-muted);
}
.faq-item.open .faq-answer {
  max-height: 120px;
  opacity: 1;
  padding-bottom: 1.2rem;
}
.faq-item .faq-question .bi {
  transition: transform 0.2s;
}
.faq-item.open .faq-question .bi {
  transform: rotate(45deg);
}

/* Footer */
.footer-section {
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9) 0%, var(--footer-bg) 100%);
  color: var(--text-dark);
  margin-top: 3rem;
  border-top: 1px solid var(--border-light);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--secondary-color);
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}
.footer-contact i {
  margin-right: 0.5rem;
  color: var(--secondary-color);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}
.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--black-bg);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title { font-size: 4.2rem; margin-bottom: 2.4rem; }
  .hero-highlight { font-size: 2.4rem; margin-top: 1.37rem; }
  .hero-img { max-width: 180px; }
  .hero-section { text-align: center; padding: 100px 0 60px; }
  .why-photo {
    max-width: 220px;
  }
  .testimonials-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .testimonial-card {
    max-width: 500px;
    width: 100%;
  }
  
  /* Mobile nav links */
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color) !important;
    transform: translateX(5px);
  }
  
  /* Mobile CTA button */
  .navbar-nav .btn-primary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  /* Mobile hamburger adjustments */
  .navbar-toggler {
    padding: 0.6rem 0.8rem;
    min-width: 44px;
    min-height: 44px;
  }
  
  .navbar-toggler-icon {
    width: 18px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .hero-title { font-size: 3.3rem; margin-bottom: 1.885rem;}
  .hero-highlight { font-size: 1.65rem; margin-top: 0.857rem; }
  .logo-carousel { gap: 1rem; padding: 1.5rem; }
  .logo-item img { height: 30px; }
  .hero-section { padding-bottom: 120px; }
  .hero-section .btn-primary {
    margin-bottom: 2.5rem;
  }
}

/* For very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .navbar-toggler {
    padding: 0.5rem 0.7rem;
  }
  
  .navbar-toggler-icon {
    width: 16px;
    height: 12px;
  }
}

@media (min-width: 1200px) {
  .container { max-width: 1400px; }
  .hero-title { font-size: 5.25rem; margin-bottom: 3rem; }
  .hero-highlight { font-size: 4.25rem; margin-top: 1.5rem; }
  .hero-text { font-size: 1.3rem; }
  .hero-img { max-width: 420px; }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Hide images on mobile */
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}
