/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    background: var(--gradient-hero);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloating 20s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: #682300;
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: #d97706;
    animation-delay: -10s;
}

@keyframes orbFloating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

.contact-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    font-size: var(--fs-h1);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-hero-description {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: start;
}


/* Contact Information */
.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info-title {
    font-size: var(--fs-h2);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.contact-info-description {
    font-size: var(--fs-body);
    color: var(--text-light);
    margin-bottom: 3.5rem;
}


/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}


.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-method-icon svg {
    width: 28px;
    height: 28px;
}


.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-method-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-value:hover {
    color: var(--primary-color);
}

.contact-method-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Social Links */
.social-links {
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}


.social-links-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}


.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}


.contact-form-title {
    font-size: var(--fs-h3);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-form-description {
    font-size: var(--fs-body);
    color: var(--text-light);
    margin-bottom: 2.5rem;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: var(--text-dark);
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(158, 66, 11, 0.1);
}

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

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(158, 66, 11, 0.2);
}


.btn-submit svg {
    width: 20px;
    height: 20px;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(50%);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.map-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 320px;
}


.map-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(158, 66, 11, 0.3);
}

.btn-map svg {
    width: 16px;
    height: 16px;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 8rem 0 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info {
        position: static;
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-method {
        width: 100%;
        max-width: 600px;
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }

    .map-overlay {
        position: static;
        margin: 2rem auto;
        max-width: 600px;
    }

    .map-container {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .map-container iframe {
        height: 400px;
    }
}


@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-section {
        padding: 80px 0;
    }

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

    .map-overlay {
        display: none;
    }
}


@media (max-width: 640px) {
    .contact-grid {
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .btn-submit {
        width: 100%;
    }

    .map-info {
        padding: 1.5rem;
        max-width: 100%;
    }
}