.contacts-page {
    min-height: 100vh;
    color: white;
    padding-bottom: 60px;
}

.contacts-hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.contacts-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contacts-title {
    font-size: 4rem;
    font-family: Unbounded, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.contacts-subtitle {
    font-size: 1.2rem;
    font-family: Unbounded, sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contacts-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contacts-section {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contacts-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffef2b 0%, #ffd700 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%);
}

.section-header h2 {
  font-size: 1.8rem;
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  margin: 0;
  color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: transparent;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.contact-method.primary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method.primary .contact-method-icon {
    background: linear-gradient(135deg, #54A9EB 0%, #4894cf 100%);
}

.contact-method-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(1);
}

.contact-method.primary .contact-method-icon img {
    filter: none;
}

.contact-method-content h3 {
  font-size: 1.3rem;
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.contact-method-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
    font-family: Unbounded, sans-serif;
    font-weight: 300;
}

.contact-link {
    color: #54A9EB;
    text-decoration: none;
    font-weight: 500;
    font-family: Unbounded, sans-serif;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffef2b;
    text-decoration: underline;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-family: Unbounded, sans-serif;
  font-weight: 500;
  color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: Unbounded, sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #011d39;
    color: white;
}

.submit-btn {
    background: linear-gradient(135deg, #ffef2b 0%, #ffd700 100%);
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    color: #000;
    font-family: Unbounded, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 239, 43, 0.3);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.company-info,
.faq-section {
    margin-bottom: 40px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.company-detail h3 {
    font-size: 1.2rem;
    font-family: Unbounded, sans-serif;
    font-weight: 600;
    color: white;
    margin: 0 0 15px 0;
}

.company-detail p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: Unbounded, sans-serif;
    font-weight: 300;
}

.company-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-detail li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: Unbounded, sans-serif;
    font-weight: 300;
    position: relative;
    padding-left: 25px;
}

.company-detail li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: Unbounded, sans-serif;
    font-weight: 500;
    margin: 0;
    color: white;
}

.faq-toggle {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: Unbounded, sans-serif;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contacts-title {
        font-size: 3rem;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contacts-hero {
        padding: 60px 20px;
    }
    
    .contacts-title {
        font-size: 2.5rem;
    }
    
    .contacts-subtitle {
        font-size: 1rem;
    }
    
    .contacts-section {
        padding: 30px 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contacts-hero {
        padding: 40px 15px;
    }
    
    .contacts-title {
        font-size: 2rem;
    }
    
    .contacts-content {
        padding: 0 15px;
    }
    
    .contacts-section {
        padding: 25px 15px;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-icon img {
        width: 22px;
        height: 22px;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-method-icon img {
        width: 25px;
        height: 25px;
    }
}

.errors {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
    font-family: Unbounded, sans-serif;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: Unbounded, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffef2b;
    box-shadow: 0 0 0 2px rgba(255, 239, 43, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}
