/* World-Class Contact Page Design */
/* This should be included after your main styles.css */

/* === Contact Page Layout === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    min-height: calc(100vh - 200px);
  }
  
  .contact-header {
    position: relative;
    margin-bottom: 80px;
  }
  
  .contact-header:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #000;
    bottom: -20px;
    left: 0;
  }
  
  .contact-header h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 20px;
    font-weight: 300;
    color: #555;
  }
  
  /* === Left side (info) === */
  .contact-info {
    padding: 0;
    margin-bottom: 60px;
  }
  
  .contact-detail {
    margin-bottom: 35px;
    position: relative;
    padding-left: 40px;
    max-width: 450px;
  }
  
  .contact-detail:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
  }
  
  .contact-detail.email:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  }
  
  .contact-detail.studio:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  }
  
  .contact-detail.gallery:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpolyline points='21 15 16 10 5 21'%3E%3C/polyline%3E%3C/svg%3E");
  }
  
  .contact-detail h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  .contact-detail p, .contact-detail a {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
  }
  
  .contact-detail a:hover {
    color: #000;
    opacity: 1;
    text-decoration: underline;
  }
  
  /* === Right side (form) === */
  .contact-form-container {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  }
  
  .contact-form {
    max-width: 100%;
    margin-top: 0;
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
  }
  
  label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #333;
    display: block;
  }
  
  input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  input:focus, textarea:focus, select:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
  }
  
  textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  button[type="submit"] {
    display: inline-block;
    background-color: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  button[type="submit"]:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* === Form Animation & Validation === */
  .form-group.floating {
    position: relative;
  }
  
  .form-group.floating label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #888;
    font-size: 1rem;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    transition: all 0.2s ease;
    pointer-events: none;
    margin: 0;
  }
  
  .form-group.floating input:focus ~ label,
  .form-group.floating textarea:focus ~ label,
  .form-group.floating input:not(:placeholder-shown) ~ label,
  .form-group.floating textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.8rem;
    padding: 0 4px;
    background: white;
    font-weight: 500;
    color: #000;
  }
  
  .form-group.floating input,
  .form-group.floating textarea {
    padding: 16px;
    background: white;
  }
  
  /* Error & Success states */
  input.error, textarea.error, select.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
  }
  
  .error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
  }
  
  .error-message.visible {
    display: block;
  }
  
  .success-message {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  }
  
  .success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
  }
  
  .success-message p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .reset-btn {
    display: inline-block;
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .reset-btn:hover {
    background-color: #000;
    color: white;
  }
  
  /* === Map Section === */
  .studio-map {
    margin-top: 80px;
  }
  
  .studio-map h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .map-container {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
  }
  
  .map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .map-container:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    pointer-events: none;
  }
  
  .map-caption {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
  }
  
  /* === Social Media Section === */
  .contact-social {
    margin-top: 60px;
    text-align: center;
  }
  
  .contact-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #000;
    color: white;
    transform: translateY(-5px);
  }
  
  /* === Responsive Design === */
  @media (min-width: 768px) {
    .contact-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    
    .contact-info {
      margin-bottom: 0;
    }
    
    .contact-social {
      margin-top: 80px;
      text-align: left;
    }
    
    .social-icons {
      justify-content: flex-start;
    }
  }
  
  @media (min-width: 1024px) {
    .contact-wrapper {
      gap: 100px;
    }
    
    .contact-header:after {
      width: 80px;
    }
    
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .form-grid .form-group:last-child {
      grid-column: span 2;
    }
    
    .form-grid .message-group {
      grid-column: span 2;
    }
  }
  
  /* === Animation & Interaction === */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animated {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .animated.delay-1 { animation-delay: 0.1s; }
  .animated.delay-2 { animation-delay: 0.2s; }
  .animated.delay-3 { animation-delay: 0.3s; }
  .animated.delay-4 { animation-delay: 0.4s; }