      /* Contact Section Styles */
      .contact-section {
        padding: 80px 0;
        background-color: var(--light);
        position: relative;
      }

      .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("/api/placeholder/1920/1080");
        background-size: cover;
        background-position: center;
        opacity: 0.05;
        z-index: 0;
      }

      .section-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
      }

      .section-title {
        font-size: 36px;
        color: var(--primary);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title:after {
        content: "";
        position: absolute;
        width: 60%;
        height: 3px;
        background-color: var(--secondary);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
      }

      .section-subtitle {
        font-size: 18px;
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
      }

      /* Contact Container */
      .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
      }

      .contact-info-wrapper {
        flex: 1;
        min-width: 300px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        transition: transform 0.3s ease;
      }

      .contact-info-wrapper:hover {
        transform: translateY(-5px);
      }

      .contact-form-wrapper {
        flex: 1;
        min-width: 300px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        transition: transform 0.3s ease;
      }

      .contact-form-wrapper:hover {
        transform: translateY(-5px);
      }

      /* Contact Info Styles */
      .info-item {
        display: flex;
        margin-bottom: 25px;
      }

      .info-icon {
        flex: 0 0 50px;
        height: 50px;
        background-color: rgba(211, 84, 0, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
      }

      .info-icon i {
        color: var(--secondary);
        font-size: 20px;
      }

      .info-content h3 {
        font-size: 18px;
        color: var(--primary);
        margin-bottom: 5px;
      }

      .info-content p {
        color: var(--gray);
        margin-bottom: 5px;
        line-height: 1.5;
      }

      /* Social Connect */
      .social-connect {
        margin-top: 30px;
      }

      .social-connect h3 {
        font-size: 18px;
        color: #333;
        margin-bottom: 15px;
      }

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

      .social-icon {
        width: 40px;
        height: 40px;
        background-color: var(--secondary);
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
      }

      .social-icon:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
      }

      /* Form Styles */
      .form-header {
        margin-bottom: 25px;
      }

      .form-header h3 {
        font-size: 22px;
        color: var(--primary);
        margin-bottom: 10px;
      }

      .form-header p {
        color: var(--gray);
      }

      .form-group {
        margin-bottom: 20px;
        position: relative;
      }

      .contact-form input,
      .contact-form select,
      .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 15px;
        color: #555;
        transition: all 0.3s ease;
      }

      .contact-form input:focus,
      .contact-form select:focus,
      .contact-form textarea:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 5px rgba(211, 84, 0, 0.3);
      }

      .form-error {
        color: #ff4136;
        font-size: 12px;
        margin-top: 5px;
        display: block;
      }

      .submit-btn {
        background-color: var(--secondary);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        width: 100%;
      }

      .submit-btn:hover {
        background-color: var(--primary);
      }

      .submit-btn i {
        margin-left: 10px;
      }

      .form-status {
        margin-top: 20px;
        padding: 10px;
        border-radius: 5px;
        display: none;
      }

      .form-status.success {
        background-color: rgba(40, 167, 69, 0.1);
        border: 1px solid #28a745;
        color: #28a745;
        display: block;
      }

      .form-status.error {
        background-color: rgba(255, 65, 54, 0.1);
        border: 1px solid #ff4136;
        color: #ff4136;
        display: block;
      }

      /* Map Styles */
      .map-container {
        position: relative;
        z-index: 1;
      }

      .map-header {
        margin-bottom: 20px;
      }

      .map-header h3 {
        font-size: 22px;
        color: var(--primary);
        text-align: center;
      }

      .map-wrapper {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
      }

      .map-placeholder {
        position: relative;
        width: 100%;
        height: 400px;
        background-color: #f5f5f5;
      }

      .map-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
      }

      .map-overlay p {
        margin-bottom: 20px;
        font-size: 18px;
      }

      .map-btn {
        background-color: var(--secondary);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
      }

      .map-btn:hover {
        background-color: var(--primary);
      }

      .map-btn i {
        margin-right: 8px;
      }

      /* Responsive Adjustments */
      @media (max-width: 991px) {
        .contact-container {
          flex-direction: column;
        }

        .contact-info-wrapper,
        .contact-form-wrapper {
          min-width: 100%;
        }
      }

      @media (max-width: 767px) {
        .section-title {
          font-size: 28px;
        }

        .section-subtitle {
          font-size: 16px;
        }

        .info-item {
          flex-direction: column;
        }

        .info-icon {
          margin-bottom: 10px;
          margin-right: 0;
        }

        .map-placeholder {
          height: 300px;
        }
      }

      @media (max-width: 480px) {
        .contact-section {
          padding: 50px 0;
        }

        .contact-info-wrapper,
        .contact-form-wrapper {
          padding: 20px;
        }

        .social-icons {
          flex-wrap: wrap;
        }
      }

      /* Animation Classes */
      .animated {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
      }

      .animated.show {
        opacity: 1;
        transform: translateY(0);
      }
