/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1d2e47;
  --primary-dark: #131d2e;
  --accent: #b8834a;
  --accent-dark: #9a6838;
  --text: #2c3e50;
  --text-light: #6c7a89;
  --bg: #ffffff;
  --bg-light: #f4f6f9;
  --border: #dce1e8;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

a:hover {
  color: var(--accent-dark);
}

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

/* === Header === */
.site-header {
  background: #ffffff;
  color: var(--text);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}

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

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

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

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

.nav-links a {
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--bg-light);
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Section === */
.section {
  padding: 4rem 0;
}

.section-light {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* === Service Cards === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

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

/* === Features / Why Us === */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  color: var(--accent);
  width: 32px;
  height: 32px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
}

.page-content {
  padding: 3rem 0;
}

.page-content .container {
  max-width: 900px;
}

/* === Rates Table === */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.rates-table th,
.rates-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.rates-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.rates-table tr:hover td {
  background: var(--bg-light);
}

.rates-note {
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.contact-info a {
  color: var(--primary);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.contact-form h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* === CTA Band === */
.cta-band {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.cta-band h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* === Footer === */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 0;
}

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

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
  mix-blend-mode: screen;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* === Services Detail Page === */
.service-detail {
  margin-bottom: 3rem;
}

.service-detail h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.service-detail p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.service-detail ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
  color: var(--text-light);
}

.service-detail li {
  margin-bottom: 0.4rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero p {
    font-size: 1rem;
  }

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

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

  .feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
