h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }

  a:hover {
    color: var(--secondary);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 106, 62, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
  } */

  .btn:hover {
    background: #ff5120;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 106, 62, 0.4);
  }

  .btn i {
    margin-right: 0.5rem;
  }

  /* ========== HERO SECTION ========== */
  .hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
  }

  .hero h1 {
    font-size: var(--headerFontSize);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--light);
  }

  .hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    color: var(--light);
  }

  /* ========== CONTACT SECTION ========== */
  .contact-section {
    background: var(--light);
    /* border-radius: 20px; */
    padding: var(--sectionPadding);
    box-shadow: var(--shadow);
    margin: -80px auto 4rem;
    position: relative;
    z-index: 10;
  }

  

  .section-title {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 3rem;
    position: relative;
  }

  /* .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0.8rem auto;
    border-radius: 2px;
  } */

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
    border-radius: 0;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--light) 0%, var(--primaryLight) 100%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .contact-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
  }

  .contact-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondaryLight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--secondary);
  }

  .card-content h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }

  .card-content p {
    margin: 0.6rem 0;
    color: var(--textLight);
    font-size: 1.05rem;
  }

  .card-content a {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
  }

  .business-hours {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--secondaryLight);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
  }

  .business-hours h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    color: black;
  }

  .hours-grid span:first-child {
    font-weight: 500;
  }

  .hours-grid span:last-child {
    color: var(--textLight);
  }

  /* ========== MAP SECTION ========== */
  .map-section {
    background: var(--light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 4rem auto;
    max-width: 1000px;
  }

  .map-container {
    padding: 2rem;
    text-align: center;
  }

  .map-title {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }

  .map-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
    text-align: left;
  }

  .map-overlay h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .map-overlay p {
    margin: 0.5rem 0 0;
    color: var(--textLight);
    font-size: 1rem;
  }

  #accra-map {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ========== CTA SECTION ========== */
  .cta-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 700px;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4e 100%);
    border-radius: 0;
    color: var(--light);
    box-shadow: var(--shadow);
  }

  .cta-title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: var(--light);
  }

  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
  }

  /* ========== ANIMATIONS ========== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ========== RESPONSIVE DESIGN ========== */
  @media (max-width: 900px) {
    .contact-grid {
      gap: 1.8rem;
    }
    
    .cta-section {
      padding: 2rem 1.5rem;
    }
  }

  @media (max-width: 768px) {
    :root {
      --sectionPadding: 3.5rem 1.5rem;
      --headerFontSize: 2rem;
    }

    .hero {
      min-height: 500px;
    }

    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .contact-section {
      margin-top: -50px;
    }

    .contact-grid {
      gap: 1.5rem;
    }

    .contact-card {
      padding: 1.8rem;
    }

    .map-wrapper {
      height: 350px;
    }
  }

  @media (max-width: 480px) {
    :root {
      --sectionPadding: 2.5rem 1rem;
      --headerFontSize: 1.8rem;
    }

    .hero {
      min-height: 450px;
    }

    .hero h1 {
      font-size: 1.8rem;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }

    .card-header {
      flex-direction: column;
      text-align: center;
    }

    .card-content {
      text-align: center;
    }

    .map-wrapper {
      height: 280px;
    }

    .map-overlay {
      padding: 1rem;
    }

    .map-overlay h4 {
      font-size: 1rem;
    }

    .map-overlay p {
      font-size: 0.9rem;
    }

    .cta-section {
      padding: 1.8rem 1.2rem;
    }
  }