
 .contact-page {
    overflow: hidden;
  }
  
  .contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
  
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none; 
    height: 120px; 
    max-height: 120px; 
    overflow-y: auto; 
  }
  
  @media (max-width: 576px) {
    .form-group.full-width {
      grid-column: span 1;
      width: 100%;
    }
  
    .contact-form textarea {
      width: 100%;
      max-width: 100%;
    }
  }
  
  .form-group.full-width textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: var(--primary-dark);
    overflow: hidden;
  }
  
  .contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

  }
  
  .contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 35, 39, 0.8);
  }
  
  .contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .contact-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .contact-label::before,
  .contact-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--text-color);
  }
  
  .contact-label::before {
    left: -20px;
  }
  
  .contact-label::after {
    right: -20px;
  }
  
  .contact-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .contact-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  .contact-details {
    padding: 100px 0;
    background-color: #fff;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .contact-info-item {
    padding: 30px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .contact-info-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .contact-info-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .contact-info-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .contact-info-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff; 
    font-size: 20px; 
  }
  

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    width: 90%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .icon-image {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }
  
  .contact-info-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
  }
  
  .contact-info-item p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .contact-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .contact-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--primary-dark);
    transition: width 0.3s ease;
  }
  
  .contact-link:hover::after {
    width: 100%;
  }
  
  .contact-form-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
  }
  
  .form-card {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .form-card h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
  }
  
  .form-card p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }
  
  .contact-form label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: var(--primary-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(28, 35, 39, 0.1);
  }
  
  .checkbox-container {
    display: flex;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
  }
  
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
  }
  
  .checkbox-container:hover input ~ .checkmark {
    border-color: #ccc;
  }
  
  .checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  .checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .form-button {
    grid-column: span 2;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--primary-dark);
    border: none;
    padding: 14px 28px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
    margin-top: 20px;
  }
  
  .form-button:hover {
    background-color: #2c373d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .checkbox-container a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .checkbox-container a:hover {
    text-decoration: underline;
  }
  
  .contact-map {
    height: 450px;
    position: relative;
    z-index: 1;
  }
  
  .map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .map-container iframe {
    display: block;
    border: none;
    width: 100%;
    height: 100%;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 1024px) {
    .contact-title {
      font-size: 42px;
    }
    
    .contact-details {
      padding: 80px 0;
    }
    
    .contact-grid {
      gap: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-hero {
      padding: 100px 0 70px;
    }
    
    .contact-title {
      font-size: 36px;
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-details {
      padding: 60px 0;
    }
  }
  
  @media (max-width: 576px) {
    .contact-title {
      font-size: 32px;
    }
    
    .contact-subtitle {
      font-size: 16px;
    }
    
    .contact-info {
      grid-template-columns: 1fr;
    }
    
    .contact-form {
      grid-template-columns: 1fr;
    }
    
    .form-group.full-width,
    .form-button {
      grid-column: span 1;
    }
    
    .contact-details {
      padding: 50px 0;
    }
    
    .form-card {
      padding: 30px 20px;
    }
  }