.contactSection {
    padding: 60px 0;
    background: var(--bg-color, #f9f9f9);
    height: auto;
}

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

.company-info {
    background: var(--card-bg, #fff);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark, #333);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    position: relative;
    letter-spacing: 0.5px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color, #e42327);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #e42327);
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
}

.info-item:hover i {
    background: var(--primary-color, #e42327);
    color: #fff;
    transform: translateY(-2px);
}

.info-item .content {
    flex: 1;
}

.info-item .label {
    font-weight: 600;
    color: var(--text-dark, #333);
    margin-bottom: 5px;
    font-size: 15px;
}

.info-item .text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.info-item .text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.info-item .text a:hover {
    color: var(--primary-color, #e42327);
}

.contact-form {
    background: var(--card-bg, #fff);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark, #333);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-control:focus {
    border-color: var(--primary-color, #e42327);
    outline: none;
    box-shadow: 0 0 0 3px rgba(228, 35, 39, 0.1);
    background: #fff;
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background: var(--primary-color, #e42327);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.submit-button:hover {
    background: var(--primary-color-dark, #c71d22);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 35, 39, 0.2);
}

.privacy-policy {
    margin-bottom: 20px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-policy label {
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-policy a {
    color: var(--primary-color, #e42327);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-policy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color, #e42327);
    margin-top: 3px;
}

.bank-accounts {
    margin-top: 50px;
    background: var(--card-bg, #fff);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.bank-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary-color, #e42327);
}

.bank-name {
    font-weight: 600;
    color: var(--text-dark, #333);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    font-size: 17px;
}

.bank-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color, #e42327);
}

.bank-details {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.bank-details div {
    margin-bottom: 5px;
}

.bank-details .iban {
    font-family: monospace;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    user-select: all;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 1px dashed #ddd;
}

.store-locations {
    margin-top: 50px;
    margin-bottom: 40px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.store-card {
    background: var(--card-bg, #fff);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color, #e42327);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.store-card:hover::before {
    transform: scaleY(1);
}

.store-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark, #333);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.store-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color, #e42327);
}

.store-address {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.store-address div {
    margin-bottom: 5px;
}

.store-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    gap: 10px;
}

.store-contact a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    background: #f8f8f8;
}

.store-contact a i {
    margin-right: 8px;
    font-size: 14px;
    color: var(--primary-color, #e42327);
    transition: all 0.3s ease;
}

.store-contact a:hover {
    background: var(--primary-color, #e42327);
    color: #fff;
}

.store-contact a:hover i {
    color: #fff;
    transform: translateY(-2px);
}

/* Map container */
.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .bank-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contactSection {
        padding: 40px 0.5rem;
    }
    
    .bank-grid {
        grid-template-columns: 1fr;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .info-item i {
        margin-top: 4px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .submit-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contactSection {
        padding: 30px 0.5rem;
    }
    
    .company-info, 
    .contact-form,
    .bank-accounts {
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .store-card {
        padding: 15px;
    }
    
    .bank-card {
        padding: 15px;
    }
    
    .bank-details .iban {
        font-size: 12px;
        padding: 8px;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .store-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .store-contact a {
        width: 100%;
    }
    
    .map-container {
        height: 300px;
        margin-top: 30px;
    }
    
    .info-item i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .privacy-policy {
        align-items: flex-start;
    }
    
    .privacy-policy input[type="checkbox"] {
        margin-top: 3px;
    }
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-info,
.contact-form,
.bank-accounts,
.store-card {
    animation: fadeInUp 0.6s ease forwards;
}

.store-card:nth-child(2) {
    animation-delay: 0.1s;
}

.store-card:nth-child(3) {
    animation-delay: 0.2s;
}

.store-card:nth-child(4) {
    animation-delay: 0.3s;
}

.store-card:nth-child(5) {
    animation-delay: 0.4s;
}