/* Base Styles */
:root {
  --dark: #121212;
  --dark-light: #1a1a1a;
  --dark-lighter: #222222;
  --gold: #D4AF37;
  --gold-dark: #B89B30;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-800: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gold {
  color: var(--gold);
}

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.icon-xs {
  width: 16px;
  height: 16px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.gold-line {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--gold);
  margin: 1rem auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.contact-button {
  background-color: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: var(--gold-dark);
}

.contact-button.mobile {
  width: 100%;
  margin-top: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  padding: 1rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1973&q=80');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark), rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  padding: 6rem 0;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.primary-button:hover {
  background-color: var(--gold-dark);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--dark-light), var(--dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: var(--dark-lighter);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-800);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(18, 18, 18, 0.8);
  max-width: 48rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: var(--white);
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 12rem;
  background-size: 150%;
  background-position: center;
  transition: all 0.5s ease;
}

.service-card:hover .service-img {
  background-size: 170%;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-content p {
  color: rgba(18, 18, 18, 0.7);
  margin-bottom: 1rem;
}

.learn-more {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: var(--gold-dark);
}

.learn-more i {
  margin-left: 0.5rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-content .gold-line {
  margin: 0 0 2rem 0;
}

.about-content p {
  font-size: 1.125rem;
  color: rgba(18, 18, 18, 0.8);
  margin-bottom: 1.5rem;
}

.about-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.expertise-item {
  display: flex;
  align-items: start;
}

.expertise-item i {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.expertise-item p {
  margin-bottom: 0;
  color: rgba(18, 18, 18, 0.7);
}

.about-image-container {
  position: relative;
}

.about-image {
  position: relative;
  z-index: 10;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  z-index: 0;
}

.about-quote {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--gold);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
  z-index: 20;
}

.about-quote p {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--dark-light);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-carousel {
  position: relative;
  margin-top: 3rem;
}

.testimonials-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 0;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.testimonials-container::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.testimonial-card {
  flex: 0 0 calc(100% - 1rem);
  scroll-snap-align: start;
  background-color: var(--dark);
  padding: 2rem;
  border-radius: 0.5rem;
}

.testimonial-stars {
  display: flex;
  margin-bottom: 1rem;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  color: var(--white);
  font-weight: 700;
}

.testimonial-author p {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.carousel-button:hover {
  background-color: var(--gold);
  color: var(--dark);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.contact-container {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.contact-card:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.contact-card h4 {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: rgba(18, 18, 18, 0.7);
}

.map-container {
  height: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.social-links a:hover .social-icon {
  color: var(--gold);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--dark-lighter);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.scroll-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--dark-lighter);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background-color: var(--gold);
}

.scroll-top:hover i {
  color: var(--dark);
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .button-group {
    flex-direction: row;
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-quote {
    max-width: 18rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
  
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .about-quote {
    position: relative;
    bottom: -20px;
    right: 0;
    max-width: 100%;
  }
}