/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
    body {
      background: #000000;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
    }

    /* ===== MAP CONTAINER ===== */
    .map-container {
      width: 100%;
      height: 450px;
      position: relative;
      overflow: hidden;
      margin-top: -90px;
      z-index: 1;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: brightness(0.8) contrast(1.1);
    }

    .map-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary-orange, #ff6b35), transparent);
      z-index: 2;
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      position: relative;
      padding: 6rem 0;
      background: #000000;
      overflow: hidden;
      isolation: isolate;
    }

    /* Background pattern */
    .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
      z-index: 0;
      pointer-events: none;
    }

    /* Orange line at top */
    .contact-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary-orange, #ff6b35), transparent);
      z-index: 1;
    }

    .contact-section .container {
      position: relative;
      z-index: 10;
    }

    /* ===== LEFT SIDE - CONTACT INFO ===== */
    .contact-info-wrapper {
      padding: 2rem 0;
    }

    /* Headings - NO UNDERLINES */
    .contact-heading {
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--primary-orange, #ff6b35);
      margin-bottom: 1rem;
      font-family: "Montserrat Underline", serif;
      position: relative;
      display: inline-block;
    }

    /* REMOVED UNDERLINE */
    .contact-heading::after {
      display: none;
    }

    .contact-heading i {
      margin-right: 8px;
      color: var(--primary-orange, #ff6b35);
      font-size: 1.4rem;
    }

    /* Contact text */
    .contact-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--paragraph-grey, #b0b0b0);
      margin-bottom: 2rem;
      font-weight: 300;
      font-family: 'Montserrat', sans-serif;
      padding-left: 2.2rem;
    }

    .phone-number {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--paragraph-grey, #b0b0b0);
      font-weight: 300;
      font-family: 'Montserrat', sans-serif;
      padding-left: 2.2rem;
      margin-bottom: 2rem;
      display: block;
    }

    /* Info blocks */
    .info-block {
      margin-bottom: 2rem;
    }

    .info-block:last-child {
      margin-bottom: 0;
    }

    /* ===== RIGHT SIDE - FORM ===== */
    .form-wrapper {
      padding: 2rem 0;
    }

    /* Form heading - NO UNDERLINE */
    .form-heading {
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--primary-orange, #ff6b35);
      margin-bottom: 2rem;
      font-family: "Montserrat Underline", serif;
      position: relative;
      display: inline-block;
    }

    /* REMOVED UNDERLINE */
    .form-heading::after {
      display: none;
    }

    /* Form inputs - PILL SHAPED */
    .form-control {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 107, 53, 0.3);
      border-radius: 50px; /* PILL SHAPE */
      padding: 0.9rem 1.5rem;
      color: #ffffff;
      font-size: 0.95rem;
      font-family: 'Montserrat', sans-serif;
      transition: border-color 0.2s ease;
      box-shadow: none;
      width: 100%;
    }

    .form-control:focus {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--primary-orange, #ff6b35);
      outline: none;
      box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
      color: #ffffff;
    }

    .form-control::placeholder {
      color: #808080;
      font-weight: 300;
    }

    /* Textarea specific - also pill shaped but with more height */
    textarea.form-control {
      border-radius: 30px; /* Slightly less round but still pill-like */
      resize: vertical;
      min-height: 120px;
    }

    /* Submit button - PILL SHAPED */
    .submit-btn {
      background: transparent;
      border: 1px solid var(--primary-orange, #ff6b35);
      color: var(--primary-orange, #ff6b35);
      padding: 0.9rem 2rem;
      font-size: 1rem;
      font-weight: 400;
      border-radius: 50px; /* PILL SHAPE */
      width: 100%;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 1.5rem;
      cursor: pointer;
    }

    .submit-btn:hover {
      background: var(--primary-orange, #ff6b35);
      color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
    }

    /* Row spacing */
    .row.g-4 {
      --bs-gutter-y: 2rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-section {
        padding: 5rem 0;
      }
    }

    @media (max-width: 768px) {
      .map-container {
        height: 350px;
        margin-top: -80px;
      }
      
      .contact-section {
        padding: 4rem 0;
      }
      
      .contact-heading {
        font-size: 1.3rem;
      }
      
      .contact-heading i {
        font-size: 1.2rem;
      }
      
      .contact-text,
      .phone-number {
        font-size: 1rem;
        padding-left: 1.8rem;
      }
      
      .form-heading {
        font-size: 1.3rem;
      }
      
      .form-control {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 576px) {
      .map-container {
        height: 300px;
        margin-top: -70px;
      }
      
      .contact-section {
        padding: 3rem 0;
      }
      
      .contact-heading {
        font-size: 1.2rem;
      }
      
      .contact-heading i {
        font-size: 1.1rem;
        margin-right: 6px;
      }
      
      .contact-text,
      .phone-number {
        font-size: 0.9rem;
        padding-left: 1.5rem;
      }
      
      .form-heading {
        font-size: 1.2rem;
      }
      
      .form-control {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 40px;
      }
      
      textarea.form-control {
        border-radius: 25px;
      }
      
      .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
      }
    }