/* ========================================
   General Styles
======================================== */

:root {
  --primary-blue: #2a78be;
  --primary-green: #09b65a;
  --secondary-color: #6c757d;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --text-color: #333;
  --gradient-bg: linear-gradient(93.75deg, #2a78be 9.22%, #09b65a 95.25%);
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Smooth Scrolling
======================================== */

html {
  scroll-behavior: smooth;
}

/* ========================================
   Header / Navigation
======================================== */

.header-section {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-brand .logo {
  height: 80px;
  width: auto;
}

.nav-menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 2rem;
}

.navbar-nav {
  border: 2px solid #4378bc;
  border-radius: 50px;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
}

.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

.dropdown-toggle::after {
  font-size: 11px;
  margin-left: 5px;
  vertical-align: middle;
}

/* Dropdown icon in nav link */
.dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown toggle icon for mobile */
.dropdown-toggle-icon {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.dropdown-toggle-icon:hover {
  color: var(--primary-blue);
}

.dropdown-toggle-icon i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-toggle-icon[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Desktop: Show dropdown on hover */
@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0rem;
    z-index: 1000;
  }

  .dropdown-toggle-icon {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-left: -6px;
    cursor: pointer;
  }

  .dropdown-toggle-icon i {
    font-size: 10px;
  }
}

/* Mobile: Show toggle icon */
@media (max-width: 991px) {
  .dropdown-toggle-icon {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 0.75rem;
    transform: none;
  }

  .nav-item.dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background-color: #f8f9fa;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .dropdown-menu.show {
    display: block !important;
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f0f9ff;
  color: var(--primary-blue);
}

.btn-phone {
  background: var(--gradient-bg);
  border: none;
  color: white !important;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(42, 120, 190, 0.2);
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 120, 190, 0.3);
  opacity: 0.95;
  color: white !important;
}

.btn-about {
  background: var(--gradient-bg);
  border: none;
  color: white !important;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 118, 194, 0.3);
  color: white !important;
}

/* ========================================
   Hero Section
======================================== */

.hero-section {
  position: relative;
  padding: 150px 0 0;
  background: url("../images/herobg.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-background {
  width: 100%;
}

.hero-content {
  padding: 0 2rem;
  margin-bottom: 0rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-highlight {
  color: #9bcb3c;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #0a3161;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.hero-feature-item {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature-item i {
  color: #9bcb3c;
  font-size: 1.1rem;
}

.btn-consultation,
.btn-inner-service {
  background: var(--gradient-bg);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.btn-consultation:hover,
.btn-inner-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 120, 190, 0.3);
  opacity: 0.95;
}

.hero-image {
  margin-top: 0px;
}

.hero-image img {
  margin-top: -70px;
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
}

/* ========================================
   Home Intro Section
======================================== */

.home-intro-section {
  padding: 80px 0;
  background-color: transparent;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.home-intro-section .row {
  align-items: flex-end;
}

.intro-content {
  padding-right: 3rem;
}

.intro-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 2rem;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--dark-color);
}

.intro-list li i {
  background-color: #98c840;
  color: #000000;
  font-size: 0.9rem;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-list li span {
  line-height: 1.6;
}

/* ========================================
   Consultation Form Card
======================================== */

.consultation-form-card {
  background: linear-gradient(90deg, #2b76c2 0.58%, #06ba53 100%);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consultation-form .form-select,
.consultation-form .form-control {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 10px 0;
  font-size: 14px;
  background-color: transparent;
  color: white;
  transition: all 0.3s ease;
}

.consultation-form .form-select::placeholder,
.consultation-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.consultation-form .form-select:focus,
.consultation-form .form-control:focus {
  background-color: transparent;
  border-bottom-color: white;
  box-shadow: none;
  outline: none;
  color: white;
}

.consultation-form .form-select {
  color: rgba(255, 255, 255, 0.8);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.consultation-form .form-select option {
  color: var(--dark-color);
  background-color: white;
}

.sms-agreement {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.form-check-group {
  display: flex;
  gap: 2rem;
}

.form-check-inline {
  margin-right: 0;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.form-check-label {
  color: white;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.btn-submit {
  background: white;
  color: #333;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: white;
  color: #333;
}

/* ========================================
   Compliance and Certifications Section
======================================== */

.compliance-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.compliance-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.compliance-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.certificates-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.certificate-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-item img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.certificate-item img:hover {
  transform: scale(1.1);
}

/* ========================================
   Inner Service Section
======================================== */

.inner-service-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.inner-service-content {
  padding-right: 3rem;
}

.inner-service-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.inner-service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.inner-service-form-card {
  background: linear-gradient(90deg, #2b76c2 0.58%, #06ba53 100%);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.inner-service-form-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inner-service-form .form-select,
.inner-service-form .form-control {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 10px 0;
  font-size: 14px;
  background-color: transparent;
  color: white;
  transition: all 0.3s ease;
}

.inner-service-form .form-select::placeholder,
.inner-service-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.inner-service-form .form-select:focus,
.inner-service-form .form-control:focus {
  background-color: transparent;
  border-bottom-color: white;
  box-shadow: none;
  outline: none;
  color: white;
}

.inner-service-form .form-select {
  color: rgba(255, 255, 255, 0.8);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.inner-service-form .form-select option {
  color: var(--dark-color);
  background-color: white;
}

.inner-service-sms-label {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.inner-service-sms-options {
  display: flex;
  gap: 2rem;
}

.inner-service-sms-options .form-check-inline {
  margin-right: 0;
}

.inner-service-sms-options .form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.inner-service-sms-options .form-check-label {
  color: white;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.btn-inner-service-submit {
  background: white;
  color: #333;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-inner-service-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: white;
  color: #333 !important;
}

/* ========================================
   Home About Section
======================================== */

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

.home-about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.home-about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #2b76c2 0%, #06ba53 100%);
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-text {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-about-content {
  padding-left: 2rem;
}

.home-about-subtitle {
  color: #3b82f6;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.home-about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.home-about-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.home-about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.home-about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.home-about-list li i {
  color: #06ba53;
  margin-right: 12px;
  font-size: 1.2rem;
}

.home-about-goal {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   About Section (About Us Page)
======================================== */

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

.about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  padding-right: 2rem;
}

.about-subtitle {
  color: #3b82f6;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mission-section {
  margin-top: 2.5rem;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mission-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   Why Specialization Matters Section
======================================== */

.why-specialization-section {
  padding: 80px 0 40px;
  background: linear-gradient(90deg, #2b76c2 0.58%, #06ba53 100%);
  position: relative;
  margin-bottom: 180px;
}

.specialization-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.specialization-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: -4rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.specialization-card {
  background: white;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 120px;
  text-align: center;
}

.specialization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.specialization-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.specialization-card-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   Challenges Section
======================================== */

/* ========================================
   Challenges Section
======================================== */

.challenges-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.challenges-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.challenges-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.challenge-card {
  background: linear-gradient(135deg, #5b9bd5 0%, #4472b8 100%);
  padding: 30px 25px;
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.challenge-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.challenge-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/ctabg-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.1rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: var(--gradient-bg);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(42, 120, 190, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 120, 190, 0.4);
  opacity: 0.95;
  color: white;
  text-decoration: none;
}

/* ========================================
   Services Section
======================================== */

.services-section {
  padding: 80px 0px 0px 0px;
  background-color: white;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.services-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-image-link {
  display: block;
  text-decoration: none;
}

.service-image {
  position: relative;
  overflow: visible;
  height: 200px;
}

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

.service-icon {
  position: absolute;
  bottom: -25px;
  left: 20px;
  width: 60px;
  height: 60px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content {
  padding: 25px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-title-link:hover .service-title {
  color: var(--primary-green);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex: 1;
}

.service-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--primary-green);
  text-decoration: none;
}

/* ========================================
   Cardiology Challenges Expertise Section
======================================== */

.challenges-expertise-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.challenges-content {
  background: linear-gradient(93.75deg, #2a78be 9.22%, #09b65a 95.25%);
  padding: 3rem;
  border-radius: 15px;
  max-width: 100%;
}

.challenges-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.challenges-subtitle {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateX(5px);
}

.expertise-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 5px;
  background: white;
  border-radius: 50%;
}

.challenges-cta {
  margin-top: 2rem;
}

.cta-text {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.btn-expert {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-expert:hover {
  background: white;
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.challenges-image {
  position: relative;
}

.challenges-image-overlap {
  position: relative;
  left: -50px;
  z-index: 2;
}

.challenges-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}

/* ========================================
   EHR & Billing Software Section
======================================== */

.software-section {
  padding: 80px 0px 50px 0px;
  background: white;
}

.software-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.software-subtitle {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.software-description {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.software-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 100px;
}

.software-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(42, 120, 190, 0.15);
  transform: translateY(-3px);
}

.software-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* ========================================
   Why Cardio Billing Solutions Section
======================================== */

.why-cardio-section {
  position: relative;
  padding: 0;
  background-image: url("../images/cardialogybg.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: visible;
  margin: 80px 0;
}

.why-cardio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.why-cardio-section .container {
  position: relative;
  z-index: 2;
}

.why-cardio-content {
  background: linear-gradient(93.75deg, #2a78be 9.22%, #09b65a 95.25%);
  padding: 3rem;
  border-radius: 15px;
  max-width: 100%;
  margin-top: -50px;
  margin-bottom: -50px;
}

.why-cardio-subtitle {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.why-cardio-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.why-cardio-description {
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.why-cardio-reasons-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.why-cardio-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-cardio-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 24px;
  height: 24px;
  background: #9bcb3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon i {
  color: white;
  font-size: 12px;
}

.why-text {
  flex: 1;
}

.why-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.why-item-description {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ========================================
   Serving USA Section
======================================== */

.serving-usa-section {
  padding: 0;
  margin: 160px 0 80px 0;
  overflow: visible;
}

.serving-usa-content {
  background: linear-gradient(93.75deg, #2a78be 9.22%, #09b65a 95.25%);
  background-image: linear-gradient(
      93.75deg,
      rgba(42, 120, 190, 0.95) 9.22%,
      rgba(9, 182, 90, 0.95) 95.25%
    ),
    url("../images/map-pattern.png");
  background-size: cover, contain;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  padding: 4rem 3rem;
  border-radius: 15px;
  text-align: center;
  margin-top: -50px;
  margin-bottom: -50px;
}

.serving-usa-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.serving-usa-description {
  font-size: 1rem;
  color: white;
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(5,auto);
  gap: 1rem;
}

.state-item {
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.state-item:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* ========================================
   How Our Partnership Works Section
======================================== */

.partnership-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.partnership-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.partnership-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.partnership-approach-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2.5rem;
  text-align: center;
}

.partnership-workflow {
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  position: relative;
  margin-bottom: 2.5rem;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b76c2 0%, #06ba53 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-number span {
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content {
  text-align: center;
  max-width: 350px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.partnership-conclusion {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

/* ========================================
   Blog Insights Section
======================================== */

.blog-section {
  padding: 80px 0;
  background: white;
  margin-bottom: 80px;
}

.blog-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Single Post: remove blog card shadow */
body.single .blog-card,
body.single-post .blog-card {
  box-shadow: none;
}

body.single .blog-card:hover,
body.single-post .blog-card:hover {
  box-shadow: none;
  transform: none;
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(67, 122, 165, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Ensure blog title link keeps color and no underline */
.blog-card-title a,
.blog-card-title a:visited,
.blog-card-title a:hover,
.blog-card-title a:focus,
.blog-card-title a:active {
  color: var(--dark-color);
  text-decoration: none;
}

.blog-card-description {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-link {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

.btn-blog {
  background: linear-gradient(90deg, #437aa5 0%, #5fb569 100%);
  color: white;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 3rem;
  border: none;
}

.btn-blog:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 122, 165, 0.4);
  color: white;
  text-decoration: none;
}

/* ========================================
   FAQs Section
======================================== */

.faqs-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faqs-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
}

.accordion-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.accordion-button {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-color);
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--dark-color);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 0 1.5rem 0;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.accordion-collapse {
  border: none;
}

/* ========================================
   Consultation CTA Section
======================================== */

.consultation-cta-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.consultation-cta-section .row {
  position: relative;
}

.consultation-content {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.95) 0%,
      rgba(45, 45, 45, 0.95) 100%
    ),
    url("../images/cardialogybg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 3rem;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.consultation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.consultation-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.consultation-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.consultation-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.consultation-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: white;
}

.consultation-benefits li i {
  width: 24px;
  height: 24px;
  background: #9bcb3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.btn-schedule {
  background: linear-gradient(90deg, #437aa5 0%, #5fb569 100%);
  color: white;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-schedule:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 122, 165, 0.4);
  color: white;
  text-decoration: none;
}

.consultation-form-wrapper {
  background: linear-gradient(90deg, #2b76c2 0.58%, #06ba53 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  margin-left: -3rem;
}

.form-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

.free-consultation-form .form-select,
.free-consultation-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  color: white;
  padding: 0.75rem 0;
  font-size: 1rem;
}

.free-consultation-form .form-select::placeholder,
.free-consultation-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.free-consultation-form .form-select:focus,
.free-consultation-form .form-control:focus {
  background: transparent;
  border-color: white;
  color: white;
  box-shadow: none;
  outline: none;
}

.free-consultation-form .form-select option {
  background: #437aa5;
  color: white;
}

.sms-label {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: block;
}

.sms-options {
  display: flex;
  gap: 2rem;
}

.sms-options .form-check-label {
  color: white;
}

.sms-options .form-check-input {
  background-color: transparent;
  border: none;
}

.sms-options .form-check-input:checked {
  background-color: white;
  border-color: white;
}

.btn-get-started {
  background: white;
  color: #437aa5;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  margin-top: 1rem;
}

.btn-get-started:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Footer Section
======================================== */

.footer-section {
  background: #e8f4fb;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,32L60,37.3C120,43,240,53,360,53.3C480,53,600,43,720,42.7C840,43,960,53,1080,53.3C1200,53,1320,43,1380,37.3L1440,32L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat center top;
  background-size: cover;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-tagline-bold {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #6b9abb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #2a78be;
  transform: translateY(-3px);
  color: white;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-menu li a:hover {
  color: #2a78be;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  display: inline-block;
}

.contact-value:hover {
  color: #2a78be;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright-text {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #2a78be;
}

/* ========================================
   Scroll to Top Button
======================================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(93.75deg, #2a78be 9.22%, #09b65a 95.25%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(42, 120, 190, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-to-top.show {
  display: flex;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(42, 120, 190, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-3px);
}

/* ========================================
   Page Banner
======================================== */

.page-banner {
  position: relative;
  padding: 180px 0 100px;
  background: url("../images/bannerbg.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.banner-content {
  position: relative;
  padding: 60px 0px;
  z-index: 2;
}

.banner-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin: 0;
  line-height: 1.4;
}

/* ========================================
   Coming Soon Section
======================================== */

.coming-soon-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.coming-soon-content {
  padding: 60px 40px;
}

.coming-soon-icon {
  font-size: 5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  display: block;
}

.coming-soon-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.coming-soon-text {
  font-size: 1.25rem;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   HIPAA Compliant Section
======================================== */

.hipaa-section {
  padding: 80px 0;
  background: white;
}

.hipaa-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  line-height: 1.4;
}

.hipaa-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.hipaa-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.hipaa-icon {
  width: 50px;
  height: 50px;
  background: #9bcb3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hipaa-icon i {
  color: white;
  font-size: 1.5rem;
}

.hipaa-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
/* ========================================
   Contact Page Styles
======================================== */

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-wrapper {
  padding: 30px 0;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(67, 120, 188, 0.15);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-green) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper i {
  color: white;
  font-size: 1.5rem;
}

.contact-info-details {
  flex: 1;
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.contact-info-link {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: var(--primary-green);
}

.contact-info-text {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.contact-info-hours {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.contact-social {
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.contact-social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
}

.contact-social-icons {
  display: flex;
  gap: 15px;
}

.contact-social-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: white;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social-icon:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-green) 100%
  );
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.contact-form-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  padding: 12px 18px;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(67, 120, 188, 0.15);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-form .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #e9ecef;
  margin-top: 0.15rem;
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.contact-form .form-check-label {
  font-size: 0.95rem;
  color: #6c757d;
  margin-left: 0.5rem;
}

.contact-form .form-check-label a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

.btn-contact-submit {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-green) 100%
  );
  color: white;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 120, 188, 0.3);
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 120, 188, 0.4);
}

/* Contact Map Section */
.contact-map-section {
  margin-top: 0;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary-blue);
}

.map-wrapper iframe {
  width: 100%;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%);
}

/* ========================================
   Thank You / Success Page Styles
======================================== */

.thank-you-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon i {
  font-size: 80px;
  color: #28a745;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.thank-you-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 25px;
}

.thank-you-content .lead {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 50px;
  line-height: 1.8;
}

.next-steps {
  margin: 50px 0;
  padding: 40px 0;
  border-top: 2px solid #e9ecef;
  border-bottom: 2px solid #e9ecef;
}

.next-steps h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.step-card {
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-green) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.step-card p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin: 0;
}

.cta-buttons {
  margin: 40px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-green) 100%
  );
  border: none;
  color: white;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 120, 190, 0.3);
}

.cta-buttons .btn-outline-primary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 120, 190, 0.2);
}

.additional-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.urgent-note {
  font-size: 1rem;
  color: var(--text-color);
  margin: 0;
}

.urgent-note a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.urgent-note a:hover {
  text-decoration: underline;
}



.home-about-section .items .item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.home-about-section .items .item .info h3{
  font-size: 22px;
}

.home-about-section .items .item img{
  width: 20px;
}