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

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: #171b1d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 50;
  box-shadow: 0px 4px 40px 0px rgba(23, 27, 29, 0.1);
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.header.scrolled {
  height: 48px;
}

.header-inner {
  height: 100%;
  padding: 0 20px;
}

.header-container {
  max-width: 1132px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-photo {
  overflow: hidden;
  width: 61px;
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.header.scrolled .header-photo {
  width: 48px;
  height: 48px;
}

.header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-text {
  display: flex;
  flex-direction: column;
}

.header-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #171b1d;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: normal;
}

.header-divider {
  display: none;
}

.header-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #707070;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: normal;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-phone-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.header-phone-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #707070;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: normal;
}

.header-phone-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #ba141a;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: normal;
}

.header-phone-desktop {
  display: none;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-section {
  background-color: #f7f7f7;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-container {
  padding: 0 20px;
}

.hero-inner {
  max-width: 938px;
  margin: 0 auto;
}

.hero-grid {
  display: flex;
  flex-direction: column;
}

.hero-left {
  width: 100%;
  max-width: 353px;
  margin: 0 auto 48px auto;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #171b1d;
  font-size: 36px;
  line-height: 46.8px;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #171b1d;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 26px;
  height: 27px;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #171b1d;
  font-size: 16px;
  line-height: 24px;
  flex: 1;
}

.hero-right {
  width: 100%;
  max-width: 353px;
  margin: 0 auto;
}

/* ========================================
   FORM CARD STYLES
   ======================================== */

.form-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.form-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #646464;
  text-align: center;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: black;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background-color: #f7f7f7;
  border: 1px solid #dadada;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ba141a;
  box-shadow: 0 0 0 3px rgba(186, 20, 26, 0.1);
}

.form-group input.error {
  border-color: #ba141a;
}

.error-message {
  color: #ba141a;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.error-message.show {
  display: block;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.radio-input {
  width: 24px;
  height: 24px;
  appearance: none;
  background-color: #f7f7f7;
  border: 1px solid #dadada;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-input:checked {
  background-color: #ba141a;
  border-color: #ba141a;
}

.radio-checkmark {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  display: none;
}

.radio-input:checked + .radio-checkmark {
  display: block;
}

.radio-label span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: black;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  height: 60px;
  background-color: #ba141a;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #9a1116;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.submit-btn:not(:disabled):hover::before {
  transform: translateX(0);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn .loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn.submitting .loading {
  display: flex;
}

.submit-btn.submitting .default-text {
  display: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Disclaimer */
.disclaimer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: black;
}

.disclaimer a {
  text-decoration: underline;
  color: inherit;
  transition: color 0.3s ease;
}

.disclaimer a:hover {
  color: #ba141a;
}

/* Success/Error Messages */
.message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
  display: none;
}

.message.show {
  display: block;
}

.message.success {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.message.error {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ========================================
   ABOUT SECTION STYLES
   ======================================== */

.about-section {
  background-color: white;
  padding: 48px 0;
}

.about-container {
  padding: 0 20px;
}

.about-inner {
  max-width: 1132px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image-wrapper {
  width: 100%;
  max-width: 307px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}

.about-image {
  width: 100%;
  max-width: 307px;
  height: 319px;
  overflow: hidden;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  width: 100%;
  max-width: 353px;
  margin: 0 auto;
}

.about-content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #171b1d;
  font-size: 28px;
  line-height: normal;
  margin-bottom: -12px;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #707070;
  font-size: 15px;
  line-height: 22.5px;
}

.about-text-group {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #707070;
  font-size: 15px;
  line-height: 22.5px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-cta {
  width: 100%;
  max-width: 356px;
  height: 60px;
  background-color: #ba141a;
  border: 2px solid #ba141a;
  color: white;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.about-cta-text {
  position: relative;
  z-index: 10;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background-color: #9a1116;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.about-cta:hover .about-cta-bg {
  transform: translateX(0);
}

/* ========================================
   LOCAL EXPERTISE SECTION STYLES
   ======================================== */

.expertise-section {
  position: relative;
  background-color: #171b1d;
  padding: 40px 0;
  min-height: 822px;
}

.expertise-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.expertise-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.expertise-container {
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.expertise-inner {
  max-width: 550px;
  margin: 0 auto;
}

.expertise-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.expertise-map {
  width: 100%;
  max-width: 293px;
  height: auto;
  margin: 0 auto;
}

.expertise-map svg {
  width: 100%;
  height: auto;
}

.expertise-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: white;
  font-size: 28px;
  line-height: 36.4px;
  text-align: left;
  margin-bottom: -12px;
}

.expertise-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ddd;
  font-size: 15px;
  line-height: 22.5px;
  text-align: left;
}

.expertise-areas {
  max-width: 315px;
  margin: 0 auto;
  width: 100%;
}

.expertise-areas-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 15px;
  line-height: 22.5px;
  margin-bottom: 16px;
  text-align: left;
}

.expertise-list {
  list-style: disc;
  padding-left: 24px;
  text-align: left;
}

.expertise-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ddd;
  font-size: 15px;
  line-height: 22.5px;
}

.expertise-cta-wrapper {
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
}

.expertise-cta {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.expertise-cta-text {
  position: relative;
  z-index: 10;
  transition: color 0.3s ease;
}

.expertise-cta:hover .expertise-cta-text {
  color: #171b1d;
}

.expertise-cta-bg {
  position: absolute;
  inset: 0;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.expertise-cta:hover .expertise-cta-bg {
  transform: translateX(0);
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
  background-color: #171b1d;
}

.footer-inner {
  height: 139px;
  padding: 0 20px;
}

.footer-container {
  max-width: 1132px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 12px;
}

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

.footer-copyright p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ddd;
  font-size: 10px;
  line-height: 15px;
}

.footer-copyright-line {
  display: block;
}

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

.footer-links p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ddd;
  font-size: 10px;
  line-height: 15px;
  white-space: nowrap;
}

.footer-links a {
  text-decoration: underline;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ba141a;
}

.footer-divider {
  margin: 0 8px;
}

/* ========================================
   RESPONSIVE STYLES - MEDIUM SCREENS
   ======================================== */

@media (min-width: 768px) {
  .header {
    height: 80px;
  }

  .header.scrolled {
    height: 56px;
  }

  .header-inner {
    padding: 0 32px;
  }

  .header-photo {
    width: 81px;
    height: 80px;
  }

  .header.scrolled .header-photo {
    width: 56px;
    height: 56px;
  }

  .header-text {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .header-name {
    font-size: 14px;
    letter-spacing: 0.8px;
  }

  .header-divider {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #707070;
    font-size: 14px;
  }

  .header-title {
    font-size: 14px;
    letter-spacing: 0.7px;
  }

  .header-phone-mobile {
    display: none;
  }

  .header-phone-desktop {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    line-height: normal;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .header-phone-desktop:hover {
    opacity: 0.8;
  }

  .header-phone-label-desktop {
    font-weight: 400;
    color: #707070;
  }

  .header-phone-number-desktop {
    font-weight: 800;
    color: #ba141a;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .hero-container {
    padding: 0 32px;
  }

  .hero-left {
    max-width: 664px;
  }

  .hero-headline {
    font-size: 48px;
    line-height: 62.4px;
  }

  .hero-subheadline {
    font-size: 22px;
    line-height: 33px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }

  .benefit-text {
    font-size: 22px;
    line-height: 33px;
  }

  .hero-right {
    max-width: 664px;
  }

  .form-card {
    padding: 48px;
  }

  .form-card h3 {
    font-size: 18px;
    line-height: 23.4px;
    margin-bottom: 32px;
  }

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

  .form-group label {
    font-size: 14px;
  }

  .radio-label span {
    font-size: 14px;
  }

  /* About Section */
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 32px;
  }

  .about-image-wrapper {
    max-width: 453px;
    margin-bottom: 60px;
  }

  .about-image {
    max-width: 453px;
    height: 470px;
  }

  .about-content {
    max-width: 528px;
  }

  .about-content-inner {
    gap: 32px;
  }

  .about-heading {
    font-size: 36px;
    margin-bottom: -16px;
  }

  .about-text {
    font-size: 18px;
    line-height: 27px;
  }

  .about-text-group {
    font-size: 18px;
    line-height: 27px;
  }

  .about-cta {
    max-width: 357px;
    margin: 0;
  }

  /* Expertise Section */
  .expertise-section {
    padding: 60px 0;
    min-height: 961px;
  }

  .expertise-container {
    padding: 0 32px;
  }

  .expertise-content {
    gap: 48px;
  }

  .expertise-map {
    max-width: 360px;
  }

  .expertise-heading {
    font-size: 36px;
    line-height: normal;
    margin-bottom: -16px;
  }

  .expertise-text {
    font-size: 18px;
    line-height: 27px;
  }

  .expertise-areas {
    max-width: 357px;
  }

  .expertise-areas-title {
    font-size: 18px;
    line-height: 27px;
  }

  .expertise-list li {
    font-size: 18px;
    line-height: 27px;
  }

  .expertise-cta-wrapper {
    max-width: 357px;
  }

  /* Footer */
  .footer-inner {
    height: 110px;
    padding: 0 32px;
  }

  .footer-container {
    padding: 32px 0;
  }

  .footer-copyright p {
    font-size: 12px;
    line-height: normal;
  }

  .footer-copyright-line {
    display: inline;
  }

  .footer-links p {
    font-size: 12px;
    line-height: normal;
  }
}

/* ========================================
   RESPONSIVE STYLES - LARGE SCREENS
   ======================================== */

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 48px;
  }

  .hero-section {
    padding-bottom: 80px;
  }

  .hero-container {
    padding: 0 48px;
  }

  .hero-grid {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 453px;
    margin: 0;
  }

  .hero-right {
    max-width: 453px;
    margin: 0;
  }

  /* About Section */
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    padding: 0 48px;
  }

  .about-grid {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }

  .about-image-wrapper {
    max-width: 550px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .about-content {
    max-width: 550px;
    margin: 0;
  }

  /* Expertise Section */
  .expertise-section {
    padding: 80px 0;
  }

  .expertise-container {
    padding: 0 48px;
  }

  /* Footer */
  .footer-inner {
    height: 80px;
    padding: 0 48px;
  }

  .footer-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    gap: 0;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-links {
    text-align: right;
  }
}

/* ========================================
   RESPONSIVE STYLES - EXTRA LARGE SCREENS
   ======================================== */

@media (min-width: 1280px) {
  .header-inner {
    padding: 0 64px;
  }

  .hero-container {
    padding: 0 64px;
  }

  .about-container {
    padding: 0 64px;
  }

  .expertise-container {
    padding: 0 64px;
  }

  .footer-inner {
    padding: 0 64px;
  }
}