/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.main-subtitle {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.main-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px;
}

.info-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-title svg {
    width: 32px;
    height: 32px;
    stroke: #467ff7;
    fill: none;
    stroke-width: 2;
}

.info-item {
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #e8f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #467ff7;
    fill: none;
    stroke-width: 2;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 14px;
    font-weight: 700;
    color: #467ff7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.info-text a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #467ff7;
}

.info-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #467ff7;
    border-color: #467ff7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(70, 127, 247, 0.25);
}

.social-link svg {
    width: 24px;
    height: 24px;
    stroke: #467ff7;
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.social-link:hover svg {
    stroke: #ffffff;
}

.contact-form-section {
    background: #f8f9ff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.form-subtitle {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-label span {
    color: #467ff7;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: #1a1a1a;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #467ff7;
    box-shadow: 0 0 0 3px rgba(70, 127, 247, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #467ff7, #2d5acc);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(70, 127, 247, 0.25);
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 127, 247, 0.35);
}

.form-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.map-section {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-card-header {
    padding: 24px;
    background: #f8f9ff;
    border-bottom: 2px solid #e5e7eb;
    text-align: center;
}

.map-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.map-subtitle {
    font-size: 15px;
    color: #4b5563;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.cta-section {
    background: linear-gradient(135deg, #467ff7, #2d5acc);
    border-radius: 20px;
    padding: 60px 48px;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #467ff7;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
    }

    .main-title {
        font-size: 36px;
    }

    .main-subtitle {
        font-size: 18px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 32px 24px;
    }

    .info-title,
    .form-title {
        font-size: 24px;
    }

    .map-title,
    .cta-title {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .info-title,
    .form-title {
        font-size: 22px;
    }

    .map-title,
    .cta-title {
        font-size: 24px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
