/* ========================================
   VERTEX CONTACT PAGE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

/* Parallax Container */
.parallax-section {
    position: relative;    color: #06402b;
    overflow-x: hidden;
    background: white;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* ========================================
   CONTACT INFO (LEFT SIDE)
   ======================================== */

.contact-info {
    text-align: left;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00777a;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: #06402b;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(6, 64, 43, 0.8);
    margin-bottom: 3rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #00777a;
    min-width: 24px;
    margin-top: 0.2rem;
}

.contact-item-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00777a;
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    font-size: 1.1rem;
    color: #06402b;
    line-height: 1.6;
}

.contact-item-content a {
    color: #06402b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: #00777a;
}

/* ========================================
   CONTACT FORM (RIGHT SIDE)
   ======================================== */

.contact-form-wrapper {
    background: #f8faf9;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #e0e7e4;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #06402b;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e7e4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #06402b;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00777a;
    box-shadow: 0 0 0 3px rgba(0, 119, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(6, 64, 43, 0.4);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00777a 0%, #06402b 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 122, 0.2);
    width: 100%;
    margin-top: 1rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 119, 122, 0.3);
}

.contact-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.button-text {
    line-height: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .button-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 15px;
    }

    .section-label {
        font-size: 0.72rem;
        margin-bottom: 1.2rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .contact-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .contact-button {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    .button-icon {
        font-size: 1.1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        margin-top: 0;
    }
}