


.contact {
    background: #f8f6f3;
}


.contact-hero {
    background: linear-gradient(135deg, #2c1810 0%, #3e2723 50%, #5d4037 100%);
    color: #f5f5dc;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}


.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


.contact-cards-section {
    margin: -4rem auto 4rem;
    position: relative;
    z-index: 10;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 10rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.12);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #3e2723;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #5d4e37;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-card-link {
    display: block;
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: #d2691e;
    transform: translateY(-2px);
}

.contact-card-badge {
    display: inline-block;
    background: rgba(210, 105, 30, 0.1);
    color: #8b4513;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.contact-card-address {
    color: #5d4e37;
    line-height: 1.6;
}

.working-hours {
    margin-top: 1rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span {
    color: #5d4e37;
    font-size: 0.9rem;
}

.hour-row strong {
    color: #3e2723;
}


.contact-form-section {
  
    
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    color: #3e2723;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #5d4e37;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #3e2723;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b4513;
    opacity: 0.5;
}

.form-group.full-width .form-icon {
    top: 3.5rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.form-note {
    color: #5d4e37;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}


.quick-actions-section {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
}

.quick-actions-section h3 {
    font-size: 1.5rem;
    color: #3e2723;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-action-card {
    background: #f8f6f3;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #3e2723;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.quick-action-card i {
    font-size: 2rem;
    color: #8b4513;
}

.quick-action-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-action-card:hover {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.quick-action-card:hover i {
    color: white;
}


.office-location-section {
    background: white;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    color: #3e2723;
    margin-bottom: 1rem;
}

.location-info p {
    color: #5d4e37;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #5d4e37;
}

.location-feature i {
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b4513;
}

.transport-info {
    background: #f8f6f3;
    padding: 1.5rem;
    border-radius: 15px;
}

.transport-info h4 {
    color: #3e2723;
    margin-bottom: 1rem;
}

.transport-info ul {
    list-style: none;
}

.transport-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #5d4e37;
}

.transport-info li i {
    color: #8b4513;
    width: 20px;
}

.location-map {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}


.social-section {
    text-align: center;
    padding: 3rem 0;
    background: #f8f6f3;
    border-radius: 25px;
    margin: 0 auto 4rem;
    max-width: 800px;
}

.social-section h3 {
    font-size: 2rem;
    color: #3e2723;
    margin-bottom: 0.5rem;
}

.social-section p {
    color: #5d4e37;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.viber {
    background: #7360f2;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1024px) {
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-main-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-cards-section {
        margin: -2rem auto 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .quick-actions-section {
        padding: 2rem;
    }

    .office-location-section {
        padding: 2rem 0;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }
}