:root {
  /* Color Palette */
  --primary: #C9952B; /* Warm Gold */
  --primary-light: #e6b85c;
  --secondary: #1A1A1A; /* Deep Black */
  --bg-dark: #1A1A1A;
  --bg-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #1A1A1A;
  --text-muted: #6c757d;
  
  /* Spacing */
  --container-max: 1140px;
  --section-padding: 100px 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.07);
  --shadow-lg: 0 25px 50px -12px rgba(201, 149, 43, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.3s;
}

a:hover {
  color: var(--primary-light);
}

ul {
  list-style: none;
}

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

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
}

header .logo span {
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

header .nav-links a {
  color: var(--text-light);
  font-weight: 500;
}

header .nav-cta {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
}

header .mobile-menu-btn {
  color: var(--text-light);
}

header.scrolled {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

header.scrolled .logo span,
header.scrolled .nav-links a,
header.scrolled .mobile-menu-btn {
  color: var(--text-light);
}

header.scrolled .nav-links a:hover {
  color: var(--primary);
}

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

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary);
}

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

.btn-block {
  display: block;
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2c2c2c 100%);
}

.hero-text {
  max-width: 800px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.trust-badges .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
}

.star-filled {
  fill: var(--primary);
}

/* Sections General */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

/* About Section */
.about {
    background: var(--bg-dark);
    color: var(--text-light);
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 149, 43, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.about p {
    color: #ccc;
    margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-item i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 5px;
}
.feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.feature-item p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-body p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #333;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.user-info h4 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}
.social-icon-large {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}
.social-proof-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.social-proof-content p {
    max-width: 500px;
    margin: 0 auto 40px;
    color: #ccc;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}
.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary);
}
.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}
.social-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-actions .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.social-actions .btn-outline:hover {
    background: var(--primary);
    color: var(--text-dark);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.info-item i {
  color: var(--primary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 5px;
}
.info-item h4 {
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}
.info-item p {
  color: var(--text-muted);
}
.contact-cta {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}
.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.contact-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 60px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--primary);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.7;
  color: var(--text-light);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--primary);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 16px; }
  
  header {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
  }
  header.scrolled { padding: 15px 0; }
  header .nav-cta { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    padding-top: 100px;
    align-items: center;
    gap: 0;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 20px;
    font-size: 1.5rem;
  }
  .mobile-menu-btn { display: block; }
  .mobile-menu-btn i[data-lucide="x"] { display: none; }
  .mobile-open ~ .mobile-menu-btn i[data-lucide="menu"] { display: none; }
  .mobile-open ~ .mobile-menu-btn i[data-lucide="x"] { display: block; }

  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .section-header h2 { font-size: 2.2rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 30px; }
  .social-actions { flex-direction: column; align-items: center; }

  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links, .footer-social {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
}