:root {
    --primary-color: #63b3ff;
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(99, 179, 255, 0.3);
  }
  
  .contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, rgba(99, 179, 255, 0.1) 0%, transparent 100%),
      radial-gradient(circle at top right, rgba(99, 179, 255, 0.15), transparent 60%);
    pointer-events: none;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.6s ease-out forwards;
  }
  
  .contact-info {
    padding-right: 40px;
  }
  
  .contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .contact-info h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
  }
  
  .contact-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .contact-methods {
    margin-top: 40px;
  }
  
  .contact-method {
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
  }
  
  .contact-method:hover {
    transform: translateY(-2px);
  }
  
  .contact-method i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
  }
  
  .contact-method .method-details h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: var(--text-light);
  }
  
  .contact-method .method-details p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-muted);
  }
  
  .contact-form {
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 30px;
    border-radius: 10px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 5px;
    color: var(--text-light);
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(99, 179, 255, 0.1);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 500;
  }
  
  .submit-btn:hover {
    background: #3d9aff;
    box-shadow: 0 4px 15px rgba(99, 179, 255, 0.3);
  }
  
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      padding-right: 0;
      margin-bottom: 30px;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  :root {
    --primary-color: #63b3ff;
    --bg-dark: #0a0a0a;
    --darker-bg: #111;
    --card-bg: rgba(30, 30, 30, 0.95);
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --card-border: rgba(99, 179, 255, 0.3);
    --input-bg: rgba(20, 20, 20, 0.9);
  }
  
  .contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: var(--bg-dark);
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-out forwards;
    border: 1px solid rgba(99, 179, 255, 0.1);
  }
  
  .contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
  }
  
  .contact-info h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
  }
  
  .contact-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .contact-methods {
    margin-top: 40px;
  }
  
  .contact-method {
    background: var(--input-bg);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
  }
  
  .contact-method:hover {
    transform: translateX(5px);
    background: rgba(99, 179, 255, 0.1);
  }
  
  .contact-method i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
  }
  
  .method-details h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: var(--text-light);
  }
  
  .method-details p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-muted);
  }
  
  .contact-form {
    background: var(--input-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(99, 179, 255, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 179, 255, 0.2);
    border-radius: 5px;
    color: var(--text-light);
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(99, 179, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 179, 255, 0.1);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 500;
  }
  
  .submit-btn:hover {
    background: #3d9aff;
    box-shadow: 0 4px 15px rgba(99, 179, 255, 0.3);
  }
  
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      padding-right: 0;
      margin-bottom: 30px;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }