/* Contact Page Styles */

:root {
    --bg: #0b0b0b;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --primary-contact: #70c232;
    --primary-700: #4cec60;
    --ring: rgba(22, 163, 74, 0.35);
    --border: #e5e7eb;
    --shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .contact-hero {
    position: relative;
    padding: 72px 0 48px;
    background: #262727;
    background: linear-gradient(152deg, rgb(0 0 0) 44%, rgb(3 71 0) 87%);
    overflow: hidden;
  }
  
  .contact-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
  }
  
  .contact-title {
    font-family: "Bebas Neue", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
    font-size: clamp(40px, 7vw, 80px);
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0,0,0,0.35);
    margin: 0 0 10px;
  }
  
  .contact-subtitle {
    color: #e2e8f0;
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Section wrapper */
  .contact-section {
    padding: 32px 0 64px;
    background: #f8fafc;
  }
  
  .contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* Grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }
  
  @media (max-width: 992px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Cards */
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 22px;
  }

  @media (min-width: 992px) {
    .card { padding: 26px; }
  }
  
  .card-title {
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
  }
  
  .card-subtitle {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 18px;
  }
  
  /* Form */
  .contact-form {
    width: 100%;
  }
  
  .form-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .two-cols {
    grid-template-columns: 1fr 1fr;
  }
  
  @media (max-width: 640px) {
    .two-cols {
      grid-template-columns: 1fr;
    }
  }
  
  .form-control label {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .form-control label span {
    color: var(--primary-contact);
  }
  
  .form-control input,
  .form-control textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease, transform .04s ease;
  }
  
  .form-control textarea {
    resize: vertical;
  }
  
  .form-control input::placeholder,
  .form-control textarea::placeholder {
    color: #94a3b8;
  }
  
  .form-control input:focus,
  .form-control textarea:focus {
    border-color: var(--primary-contact);
    box-shadow: 0 0 0 4px var(--ring);
  }
  
  .form-control input:active,
  .form-control textarea:active {
    transform: translateY(0.5px);
  }
  
  .form-actions {
    margin-top: 8px;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-contact);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 700;
    letter-spacing: .2px;
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease;
    box-shadow: 0 8px 20px rgba(22,163,74,.25);
    width: 100%;
  }
  
  .btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
  }
  
  .btn-primary:active {
    transform: translateY(0);
  }
  
  /* Info list */
  .info-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 14px;
  }
  
  .info-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .1s ease, border-color .2s ease;
  }

  /* Left green accent */
  .info-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 2px;
    border-radius: 3px;
    background: #8fbe4c;
    box-shadow: 0 0 0 1px rgba(22,163,74,0.15);
  }

  
  .info-item-2 {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .1s ease, border-color .2s ease;
  }

  /* Left green accent */
  .info-item-2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 2px;
    border-radius: 3px;
    background: #6bec7c;
    box-shadow: 0 0 0 1px rgba(22,163,74,0.15);
  }

  .info-item:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.09);
    transform: translateY(-1px);
    border-color: rgba(22,163,74,0.35);
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    margin-top: -25px;
    margin-left: 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(34,197,94,0.12), rgba(34,197,94,0.08));
    display: grid;
    place-items: center;
  }
  
  .info-icon i {
    width: 15px !important   ;
    height: 15px !important;
    color: var(--primary-contact);
  }
  
  .info-content h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--text);
    font-weight: 700;
  }
  
  .info-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }

  /* Button icon spacing */
  .btn-primary .btn-icon {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 8px;
    background-color: var(--primary-contact);
  }