:root {
  --primary-color: #ff6600;
  --secondary-color: #2c3e50;
  --accent-color: #27ae60;
  --light-bg: #f8f9fa;
  --gradient-primary: linear-gradient(
    135deg,
    #ff6600 0%,
    #ff8533 50%,
    #ffaa66 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    #2c3e50 0%,
    #34495e 50%,
    #4a6741 100%
  );
  --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    45deg,
    #f8f9fa 0%,
    #e9ecef 25%,
    #f8f9fa 50%,
    #e9ecef 75%,
    #f8f9fa 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

    .page-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .page-header {
      text-align: center;
      padding: 60px 20px;
  background: var(--gradient-secondary);
      color: white;
      position: relative;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .page-header h1 {
      font-size: 3rem;
      position: relative;
      z-index: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      margin: 0 auto;
    }

    .page-header p {
      font-size: 1.2rem;
      opacity: 0.9;
      position: relative;
      z-index: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 10px;
    }

    .content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 600px;
      width: 100%;
      overflow-x: hidden;
    }

    .form-section {
      padding: 50px 40px;
      background: #ffffff;
    }

    .info-section {
      padding: 50px 40px;
      background: linear-gradient(135deg, #f8fafc, #e2e8f0);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .form-row .form-group {
      flex: 1;
      min-width: 150px;
      box-sizing: border-box;
    }

    /* Ensure form rows don't overflow on smaller screens */
    @media (max-width: 992px) {
      .form-row .form-group {
        min-width: 100%;
      }
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #374151;
      font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 15px;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #82819a;
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
      transform: translateY(-2px);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: linear-gradient(135deg, #000000, #000000);
      color: white;
      padding: 15px 40px;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
    }

    .submit-btn:active {
      transform: translateY(-1px);
    }

    .contact-info {
      margin-bottom: 40px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      padding: 20px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .contact-item:hover {
      transform: translateX(10px);
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: black;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: white;
      font-size: 1.2rem;
    }

    .contact-details h3,
    .contact-details p {
      color: #000;
    }

    .success-message {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      padding: 15px;
      border-radius: 12px;
      margin-bottom: 20px;
      display: none;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    /* Mobile Responsive Styles */
    @media (max-width: 991.98px) {
      .content {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .form-section,
      .info-section {
        padding: 30px 20px;
      }

      .page-header {
        padding: 40px 15px;
      }

      .page-header h1 {
        font-size: 2.2rem;
      }

      .page-header p {
        font-size: 1rem;
      }

      .form-row {
        flex-direction: column;
        gap: 0;
      }

      .form-row .form-group {
        min-width: 100%;
        width: 100%;
      }

      .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
      }

      .contact-item:hover {
        transform: translateY(-5px);
      }

      .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
      }

      #googleMap {
        height: 300px !important;
        margin-top: 30px;
      }

      #googleMap iframe {
        width: 100% !important;
        height: 100% !important;
      }
    }

    @media (max-width: 768px) {
      .page-container {
        padding: 30px 15px;
      }

      .page-header {
        padding: 35px 15px;
      }

      .page-header h1 {
        font-size: 1.8rem;
      }

      .page-header p {
        font-size: 0.95rem;
      }

      .form-section,
      .info-section {
        padding: 25px 15px;
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        padding: 12px;
        font-size: 0.95rem;
      }

      .form-group textarea {
        min-height: 100px;
      }

      .submit-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
      }

      .contact-item {
        padding: 18px 12px;
      }

      .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
      }

      .contact-details h3 {
        font-size: 1.1rem;
      }

      .contact-details p {
        font-size: 0.9rem;
      }

      #googleMap {
        height: 250px !important;
      }
    }

    @media (max-width: 480px) {
      .page-container {
        padding: 20px 10px;
      }

      .page-header {
        padding: 30px 10px;
      }

      .page-header h1 {
        font-size: 1.6rem;
      }

      .page-header p {
        font-size: 0.9rem;
        padding: 0 10px;
      }

      .form-section,
      .info-section {
        padding: 20px 12px;
      }

      .form-group label {
        font-size: 0.9rem;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 8px;
      }

      .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
      }

      .contact-item {
        padding: 15px 10px;
      }

      .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      #googleMap {
        height: 200px !important;
      }
    }