:root {
  /* STRICT COLOR SYSTEM */
  --primary: #1a1a1a;
  /* Deep Charcoal/Graphite Black */
  --secondary: #f5f1e8;
  /* Warm Beige/Soft Cream */
  --accent: #2d5a4c;
  /* Muted Emerald Green */

  /* Typography */
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Inter', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--primary);
  background-color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(45, 90, 76, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 90, 76, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(26, 26, 26, 0.05);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 20px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--accent);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: #555;
  font-weight: 300;
}

/* NAVBAR - VERY IMPORTANT */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  height: 50px;
  width: auto;
  background-color: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--serif);
}

.logo-text {
  padding: 0 10px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

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

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

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

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
}

/* HERO SECTION - NO IMAGES */
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, var(--secondary) 0%, #e8e2d5 100%);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 90, 76, 0.1) 0%, rgba(45, 90, 76, 0) 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background-color: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(26, 26, 26, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 25px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-card p {
  color: #666;
  font-weight: 300;
  font-size: 0.95rem;
}

/* PREMIUM SERVICES SECTION */
.premium-services {
  padding: 100px 0;
  background-color: rgba(26, 26, 26, 0.02);
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.premium-feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.premium-icon {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.premium-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.premium-feature p {
  color: #666;
  font-weight: 300;
}

/* ABOUT SECTION */
.about {
  padding: 100px 0;
  background-color: var(--secondary);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.05rem;
}

/* SERVICE AREAS */
.service-areas {
  padding: 100px 0;
  background-color: rgba(26, 26, 26, 0.02);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.area-card {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(26, 26, 26, 0.05);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.area-card h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* FAQ SECTION */
.faq {
  padding: 100px 0;
  background-color: var(--secondary);
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.faq-question {
  padding: 22px 25px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-answer {
  padding: 25px;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CONTACT SECTION */
.contact {
  padding: 100px 0;
  background-color: rgba(26, 26, 26, 0.02);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-details {
  margin-bottom: 35px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.contact-detail i {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 24px;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 90, 76, 0.1);
}

.map-placeholder {
  height: 300px;
  background-color: rgba(26, 26, 26, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 500;
  margin-top: 30px;
}

/* FOOTER */
.footer {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  background-color: var(--secondary);
  color: var(--primary);
  height: 50px;
  width: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--serif);
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(245, 241, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-container,
  .premium-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 15px 0;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(245, 241, 232, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 0 0 20px 0;
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 150px 0 80px;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

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

  .section-title {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
