:root {
  --primary-color: #1a1f2e; /* Dark navy/charcoal */
  --primary-light: #252b3b;
  --accent-beige: #E8D5C4;
  --accent-peach: #DEB8A0;
  --accent-coral: #C9937C;
  --text-light: #ffffff;
  --text-offwhite: #f0f4f8;
  --text-dark: #1a1f2e;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--accent-coral);
  color: white;
  box-shadow: 0 4px 14px rgba(201, 147, 124, 0.3);
}

.btn-primary:hover {
  background-color: #ba826a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 147, 124, 0.4);
}

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

.btn-secondary:hover {
  background-color: rgba(232, 213, 196, 0.1);
  transform: translateY(-2px);
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.dark-section .section-subtitle {
  color: var(--accent-beige);
  opacity: 0.9;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 12px 0;
  background-color: rgba(26, 31, 46, 0.98);
}

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

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-peach);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-offwhite);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-coral);
  transition: var(--transition);
}

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

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

.nav-cta {
  background-color: var(--accent-coral);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: #ba826a;
  color: white !important;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 147, 124, 0.1) 0%, rgba(26, 31, 46, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--accent-peach);
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(222, 184, 160, 0.3);
  z-index: -1;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-offwhite);
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

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

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  width: 100%;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-badge {
  position: absolute;
  background-color: white;
  color: var(--text-dark);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
}

.badge-1 {
  bottom: 40px;
  left: -30px;
}

.badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

.floating-badge i {
  font-size: 2rem;
  color: var(--accent-coral);
}

.badge-text h4 {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.badge-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Trust Section */
.trust-section {
  padding: 40px 0;
  background-color: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-section p {
  text-align: center;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.logos-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-logo {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-logo:hover {
  opacity: 1;
  color: var(--text-dark);
}

/* Vision & Mission */
.vision-mission {
  background-color: var(--bg-light);
}

.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vm-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vm-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  gap: 24px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.vm-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(222, 184, 160, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-coral);
  flex-shrink: 0;
}

.vm-card.dark {
  background-color: var(--primary-color);
  color: white;
}

.vm-card.dark .vm-icon {
  background-color: rgba(255,255,255,0.1);
  color: var(--accent-beige);
}

.vm-text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.vm-text p {
  color: var(--text-muted);
}

.vm-card.dark .vm-text p {
  color: var(--text-offwhite);
  opacity: 0.9;
}

.vm-image {
  border-radius: 20px;
  object-fit: cover;
  height: 600px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Why Choose Us */
.why-us {
  background-color: white;
}

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

.feature-card {
  padding: 40px 30px;
  border-radius: 16px;
  background-color: var(--bg-light);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  background-color: white;
  border-color: rgba(201, 147, 124, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-coral);
  margin: 0 auto 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-coral);
  color: white;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

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

/* Services Section */
.services {
  position: relative;
  background-color: var(--primary-color);
  color: white;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/services.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

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

.service-card {
  background-color: rgba(37, 43, 59, 0.85);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 213, 196, 0.3);
  background-color: rgba(37, 43, 59, 0.95);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 2rem;
  color: var(--accent-beige);
}

.service-rating {
  display: flex;
  color: #fbbf24;
  font-size: 0.875rem;
  gap: 2px;
}

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

.service-card p {
  color: var(--text-offwhite);
  opacity: 0.8;
  margin-bottom: 24px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--accent-peach);
}

.service-link {
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-beige);
  gap: 12px;
}

/* About Isaac */
.about-section {
  background-color: var(--bg-light);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 10px solid white;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-content h4 {
  color: var(--accent-coral);
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.credentials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.credentials-list i {
  color: #10b981;
}

/* Statistics Section */
.stats {
  background-color: white;
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background-color: var(--accent-beige);
  padding: 80px 0;
  text-align: center;
}

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

.cta-section h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(26, 31, 46, 0.8);
  margin-bottom: 40px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--text-offwhite);
  opacity: 0.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
}

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

.social-links a:hover {
  background-color: var(--accent-coral);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-offwhite);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-beige);
  opacity: 1;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-offwhite);
  opacity: 0.8;
}

.footer-contact i {
  color: var(--accent-peach);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-offwhite);
  opacity: 0.6;
  font-size: 0.875rem;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 40px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image {
    height: 350px;
    margin-top: 40px;
  }
  .features-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .floating-badge {
    display: none;
  }

  .vm-container, .about-container {
    grid-template-columns: 1fr;
  }
  .vm-image {
    order: -1;
    height: 300px;
    margin-bottom: 30px;
  }
  .about-image {
    margin-bottom: 30px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }

  .stats {
    padding: 60px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-item h2 {
    font-size: 2.75rem;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: 2.5rem;
  }
  .cta-section p {
    font-size: 1.1rem;
  }
  .cta-section .btn {
    width: 100%;
    max-width: 400px;
  }


  footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-about p {
    margin: 0 auto 24px;
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-about .logo {
    justify-content: center;
  }

  .credentials-list {
    grid-template-columns: 1fr;
  }
  .vm-card {
    padding: 24px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }
  .vm-icon {
    margin: 0 auto;
  }

}

@media (max-width: 480px) {
  .features-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {

    font-size: 2.25rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .cta-section h2 {
    font-size: 2.25rem;
  }
  .container {
    padding: 0 20px;
  }
}

/* Contact Page */
.contact-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 147, 124, 0.1) 0%, rgba(26, 31, 46, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-hero p {
  font-size: 1.25rem;
  color: var(--accent-beige);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-section {
  padding: 100px 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-coral);
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.info-text p {
  color: var(--text-muted);
}

/* Appointment Form */
.booking-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-title {
  margin-bottom: 30px;
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f8fafc;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-coral);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(201, 147, 124, 0.1);
}

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

.map-container {
  width: 100%;
  height: 450px;
  margin-top: 50px;
  border: none;
  display: block;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .booking-form-container {
    order: 1;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .booking-form-container {
    padding: 24px;
  }
}

