/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cormorant Garamond", serif;
  }
  
  body {
    background-color: #f5f2ea;
    color: #4a4a4a;
    line-height: 1.6;
    padding: 0px 0px;
  }
  
  /* Form styling */
  #contactForm {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f6f0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
  }
  
  #contactForm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #d9cfc1, #a39179, #d9cfc1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  #contactForm:hover {
    box-shadow: 0 15px 40px rgba(163, 145, 121, 0.2);
    transform: translateY(-5px);
  }
  
  #contactForm:hover::before {
    transform: scaleX(1);
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #6d5c4d;
    transition: all 0.3s ease;
  }
  
  .form-group:hover label {
    color: #a39179;
    transform: translateX(5px);
  }
  
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d9cfc1;
    border-radius: 6px;
    background-color: #f9f6f0;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: #4a4a4a;
  }
  
  .form-control:focus,
  .form-control:hover {
    outline: none;
    border-color: #a39179;
    box-shadow: 0 0 0 3px rgba(163, 145, 121, 0.2);
    transform: translateY(-2px);
  }
  
  .form-group::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(163, 145, 121, 0.05);
    transition: height 0.3s ease;
    z-index: 0;
  }
  
  .form-group:hover::after {
    height: 100%;
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  .submit-btn {
    display: inline-block;
    background-color: #a39179;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
  }
  
  .submit-btn:hover {
    background-color: #8a7a66;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 122, 102, 0.3);
    letter-spacing: 1px;
  }
  
  .submit-btn:hover::before {
    left: 100%;
  }
  
  /* Decorative elements */
  #contactForm::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9cfc1' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    transition: all 0.5s ease;
    z-index: 0;
  }
  
  #contactForm:hover::after {
    transform: rotate(15deg) scale(1.2);
    opacity: 0.5;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    #contactForm {
      padding: 30px 20px;
    }
  
    .form-group label {
      font-size: 16px;
    }
  
    .form-control {
      padding: 10px 12px;
    }
  
    .submit-btn {
      padding: 12px 25px;
    }
  }
  