/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #f5f9fc;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 32px;
    font-weight: 700;
    color: #00a6d6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #333;
}

.btn-contact {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-contact:hover,
.btn-contact.active {
    border-color: #00a6d6;
    color: #00a6d6;
}

/* Contact Section */
.contact {
    background: #2c5f6f;
    padding: 120px 0 100px;
    color: white;
    min-height: 100vh;
}

.contact h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    line-height: 1.2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.office {
    color: white;
}

.office-address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
}

.office-email {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 400;
}

.office-phone {
    font-size: 16px;
    font-weight: 400;
}

/* Contact Form */
.contact-form-section {
    background: #e8f4f8;
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00a6d6;
    box-shadow: 0 0 0 3px rgba(0, 166, 214, 0.1);
}

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

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #2c5f6f;
    color: white;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    min-width: 120px;
}

.btn-send:hover {
    background: #1f4a57;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-send:hover .btn-arrow {
    transform: translate(2px, -2px);
}

/* Footer */
.footer {
    background: #e8f4f8;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand h2 {
    font-size: 32px;
    font-weight: 700;
    color: #00a6d6;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00a6d6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 16px 20px;
    }

    .nav-links {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact {
        padding: 140px 0 80px;
    }

    .contact h1 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section {
        padding: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact h1 {
        font-size: 28px;
    }

    .contact-form-section {
        padding: 24px;
    }

    .form-group label {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-send {
        padding: 14px 28px;
        font-size: 14px;
    }

    .nav-brand h1 {
        font-size: 28px;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .office-address,
    .office-email,
    .office-phone {
        font-size: 14px;
    }
}