/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    height: 50vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #ccc;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    padding: 8rem 6%;
    background-color: #fff;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Contact Info Column */
.contact-info {
    padding: 2rem 0;
}

.contact-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: -1px;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.info-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.info-content a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #666;
    border-bottom-color: #666;
}

.text-muted {
    color: #999 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
}

/* Social Links */
.social-links {
    margin-top: 4rem;
}

.social-links h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
}

.social-icon-contact {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 8px;
    color: #000;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-icon-contact:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

/* Contact Form Column */
.contact-form-wrapper {
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0 12px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #000;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #000;
    background: transparent;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #000;
    width: 0;
    transition: width 0.3s ease;
}

.form-group input:focus ~ .form-border,
.form-group textarea:focus ~ .form-border {
    width: 100%;
}

.form-group-full {
    margin-bottom: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    padding: 12px 0;
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    height: auto;
    min-width: 20px;
    min-height: 20px;
    margin-top: 2px;
    cursor: pointer;
    border: 2px solid #000;
    accent-color: #000;
}

.form-checkbox label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-checkbox a {
    color: #000;
    border-bottom: 2px solid #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-checkbox a:hover {
    color: #666;
    border-bottom-color: #666;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-submit i {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Map Section */
.contact-map {
    width: 100%;
    background: #f9f9f9;
    padding: 4rem 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    border-radius: 12px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-heading {
        font-size: 2.5rem;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 3%;
    }

    .contact-hero {
        height: 40vh;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .form-heading {
        font-size: 1.5rem;
    }

    .info-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .contact-map {
        padding: 2rem 0;
    }

    .map-container {
        padding: 0 3%;
    }
}
