* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-header {
    background: linear-gradient(135deg, #43abdd 0%, #5eb3d6 100%);
    padding: 40px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    animation: fadeInUp 0.6s ease;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.contact-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-column,
.contact-info-column {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #777;
    margin-bottom: 30px;
    font-size: 15px;
}

.info-card-simple h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card-simple p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.info-card-simple a {
    color: #667eea;
    text-decoration: none;
}

.info-card-simple a:hover {
    color: #764ba2;
}

.map-frame {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-frame iframe {
    width: 100%;
    height: 250px;
    border: none;
}

@media (max-width: 992px) {
    .contact-two-column {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #43abdd 0%, #5eb3d6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 20px;
}

.info-header h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.info-details {
    padding-left: 65px;
}

.info-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-details a {
    color: #43abdd;
    text-decoration: none;
    transition: color 0.3s;
}

.info-details a:hover {
    color: #5eb3d6;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    animation: fadeInRight 0.6s ease;
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #43abdd;
    background: white;
    box-shadow: 0 0 0 4px rgba(67, 171, 221, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

select.form-control {
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(135deg, #43abdd 0%, #5eb3d6 100%);
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.required {
    color: #e74c3c;
}

/* Map Section */
.map-section {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.map-header {
    text-align: center;
    margin-bottom: 35px;
}

.map-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.map-header p {
    color: #666;
    font-size: 15px;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 80px 60px;
    border-radius: 25px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.faq-item h4 {
    color: #43abdd;
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.faq-item h4 i {
    font-size: 16px;
}

.faq-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Working Hours */
.working-hours {
    background: linear-gradient(135deg, rgba(67, 171, 221, 0.05) 0%, rgba(94, 179, 214, 0.05) 100%);
    padding: 35px;
    border-radius: 18px;
    margin-top: 20px;
}

.working-hours h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: #333;
    font-weight: 600;
}

.time {
    color: #43abdd;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 350px 1fr;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .map-section {
        padding: 30px 25px;
    }

    .faq-section {
        padding: 50px 30px;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .contact-form-wrapper,
    .map-section,
    .info-card {
        padding: 25px 20px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

.header-logo-container {
    text-align: center;
    margin-top: 10px;
}

.header-logo {
    max-height: 75px;
    margin-bottom: 20px;
    position: absolute;
    top: 60px;
    left: 150px;
}