:root {
  --primary: #1e3a8a;
  /* Trustworthy deep blue */
  --primary-dark: #172554;
  --secondary: #b45309;
  /* Warm earthy tone */
  --accent: #2563eb;
  --dark: #111827;
  --light: #f9fafb;
  --text-main: #374151;
  --text-muted: #6b7280;
  --glass: rgba(255, 255, 255, 0.95);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #e0e7ff;
  color: var(--primary);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--dark);
}

.btn-phone {
  background: var(--secondary);
  color: white;
}

.btn-phone:hover {
  background: #92400e;
  color: white;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.75);
  /* Darker overlay for better text readability */
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Services */
.services {
  padding: 6rem 0;
  background: white;
}

.section-header {
  text-align: left;
  max-width: 600px;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.service-card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #e0e7ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 1rem;
}

/* Reviews/About Section */
.about {
  padding: 6rem 0;
  background: #f3f4f6;
  /* Soft gray for real-world feel */
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--dark);
}

.features-list i {
  color: var(--secondary);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
  fill: #fbbf24;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e5e7eb;
}

.contact-info {
  padding: 4rem;
  background: white;
}

.contact-info p {
  margin-bottom: 2rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
}

.info-item i {
  width: 3rem;
  height: 3rem;
  background: #e0e7ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-item .label {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.phone-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.contact-image {
  display: flex;
  background: var(--light);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
}

footer .logo {
  color: white;
  justify-content: center;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.justify-center {
  justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 991px) {

  .grid-2,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}