:root {
  --blue: #1f4e79;
  --blue-dark: #163757;
  --gold: #f4a024;
  --bg-light: #f5f7fa;
  --text-main: #333333;
  --text-muted: #666666;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 0;
  color: var(--blue-dark);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid #e0e4ea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-dark);
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text-main);
}

.main-nav a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

.hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.hero-text p {
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.hero-image {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
}

.hero-photo-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}


.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: 8px;
  border: 1px solid #e0e4ea;
  padding: 1.5rem;
  background-color: var(--white);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.card {
  border-radius: 8px;
  border: 1px solid #e0e4ea;
  padding: 1.5rem;
  background-color: var(--white);
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li::before {
  content: "✔";
  color: var(--gold);
  margin-right: 0.5rem;
}

.checklist li {
  margin-bottom: 0.4rem;
}

.page-hero {
  background-color: var(--bg-light);
  padding: 2.5rem 0;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
}

.narrow {
  max-width: 720px;
}

.service-list {
  display: grid;
  gap: 1.5rem;
}

.service-summary {
  border-bottom: 1px solid #e0e4ea;
  padding-bottom: 1.25rem;
}

.service-summary:last-child {
  border-bottom: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.case-card {
  border-radius: 8px;
  border: 1px solid #e0e4ea;
  padding: 1.5rem;
  background-color: var(--white);
}

.cta-section {
  background: var(--blue-dark);
  color: var(--white);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #d1d5db;
  margin-left: 0.75rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold);
  color: #1f2933;
}

.btn-primary:hover {
  background-color: #e08f10;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--blue-dark);
  border: 1px solid #e0e4ea;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
}

.btn-outline {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(31, 78, 121, 0.06);
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner {
    position: relative;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-photo-placeholder {
    width: 220px;
    height: 220px;
  }
}
/* Contact Page Layout */
.contact-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Contact Card */
.contact-card {
  flex: 1 1 420px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  max-width: 520px;
}

/* Success Banner */
.success-banner {
  background: #e6f7e9;
  border-left: 4px solid #2e8b57;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #2e8b57;
  font-weight: 600;
}

/* Form Labels */
.contact-form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #333;
}

/* Input Group (icon + field) */
.input-group {
  position: relative;
  margin-top: 8px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.6;
}

.contact-form input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus {
  border-color: #1F4E79;
  outline: none;
}

/* Submit Button */
.contact-form button {
  margin-top: 25px;
  padding: 14px 20px;
  font-size: 16px;
  width: 100%;
  border-radius: 6px;
}

/* Right-Side Image */
.contact-image-wrapper {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Mobile Layout */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-image-wrapper {
    margin-top: 30px;
  }
}
/* Contact Page Layout */
.contact-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Contact Card */
.contact-card {
  flex: 1 1 420px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  max-width: 520px;
}

/* Success Banner */
.success-banner {
  background: #e6f7e9;
  border-left: 4px solid #2e8b57;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #2e8b57;
  font-weight: 600;
}

/* Form Labels */
.contact-form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #333;
}

/* Input Group (icon + field) */
.input-group {
  position: relative;
  margin-top: 8px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.6;
}

.contact-form input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus {
  border-color: #1F4E79;
  outline: none;
}

/* Submit Button */
.contact-form button {
  margin-top: 25px;
  padding: 14px 20px;
  font-size: 16px;
  width: 100%;
  border-radius: 6px;
}

/* Right-Side Image */
.contact-image-wrapper {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Mobile Layout */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-image-wrapper {
    margin-top: 30px;
  }
}
.hero-image {
  flex: 0 0 350px; /* Sets a fixed width for the image column */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  width: 100%;
  max-width: 320px; /* Controls the maximum size */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .hero-photo {
    max-width: 260px;
  }
}