/* ===== Contact Section ===== */
.contact {
    width: 100%;
    background-color: var(--bg-bluish-white);
    padding: 10rem 1rem 8rem;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: var(--accent-blue-dark);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 71, 153, 0.3);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-dark);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Info Card */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 71, 153, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 71, 153, 0.15);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.email-icon {
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue-light));
}

.phone-icon {
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue-light));
}

.location-icon {
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue-light));
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.info-content a {
    color: var(--accent-blue-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-blue-light);
}

.info-subtitle {
    font-size: 0.875rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue-light));
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 71, 153, 0.3);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.0625rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--accent-blue-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    gap: 1rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.feature-item svg {
    flex-shrink: 0;
}

/* Contact Social */
.contact-social {
    text-align: center;
}

.contact-social p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 71, 153, 0.1);
}

.social-icons a:hover {
    background: var(--accent-blue-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 71, 153, 0.3);
}

/* ===== Footer ===== */
.footer {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.9375rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-blue-dark);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-card {
        order: 2;
    }
    
    .contact-info-wrapper {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 1rem 6rem;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .section-description {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.75rem;
    }
    
    .info-icon {
        margin-bottom: 0;
    }
    
    .info-content h3 {
        font-size: 1.125rem;
    }
    
    .info-content p {
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 2.5rem 2rem;
    }
    
    .cta-icon {
        width: 64px;
        height: 64px;
    }
    
    .cta-card h3 {
        font-size: 1.75rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .contact-social p {
        font-size: 0.875rem;
    }
    
    .social-icons {
        gap: 0.875rem;
        flex-wrap: wrap;
    }
    
    .social-icons a {
        width: 44px;
        height: 44px;
    }
    
    /* Footer responsive */
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .footer-bottom-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 5rem 0.75rem 5rem;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        padding: 0.4rem 1.25rem;
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-info-wrapper {
        gap: 1.25rem;
    }
    
    .info-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .info-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .info-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .info-content p {
        font-size: 0.9375rem;
        margin-bottom: 0.4rem;
    }
    
    .info-subtitle {
        font-size: 0.8125rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .cta-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 1.25rem;
    }
    
    .cta-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .cta-card p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .cta-features {
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .feature-item {
        gap: 0.625rem;
        font-size: 0.875rem;
    }
    
    .feature-item svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-social {
        margin-top: 2rem;
    }
    
    .contact-social p {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .social-icons a svg {
        width: 20px;
        height: 20px;
    }
    
    /* Footer responsive */
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        height: 32px;
        margin-bottom: 0.75rem;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-social a svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-links {
        gap: 0.625rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .footer-bottom-links a {
        font-size: 0.8125rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .contact {
        padding: 4.5rem 0.5rem 4.5rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .cta-card {
        padding: 1.75rem 1.25rem;
    }
    
    .cta-card h3 {
        font-size: 1.375rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
    }
    
    .footer {
        padding: 2rem 0.75rem 1.25rem;
    }
    
    .footer-content {
        gap: 1.75rem;
    }
    
    .footer-col h4 {
        font-size: 0.9375rem;
    }
    
    .footer-logo {
        height: 28px;
    }
}
