/* ========================================
   Contact Page Styles
   ======================================== */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(12, 79, 88, 0.6), rgba(12, 79, 88, 0.6)), 
                url('../assets/images/Hero\ Section-\ Contact.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 155px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 79, 88, 0.3);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-breadcrumb {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: var(--bright-cyan-glow);
}

.contact-breadcrumb .separator {
    color: var(--pure-white);
}

.contact-breadcrumb span:last-child {
    color: var(--bright-cyan-glow);
}

/* Contact Content Section */
.contact-content-section {
    padding: 2rem 0 2rem 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Side - Contact Info */
.contact-info-section {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
}

.contact-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Right Side - Contact Form */
.contact-form-section {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.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;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(12, 79, 88, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-send-message {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-teal);
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--deep-gray);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--secondary-teal);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-main-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 120px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-breadcrumb {
        font-size: 0.95rem;
    }

    .contact-content-section {
        padding: 3rem 0 2rem 0;
    }
    
    .faq-section,
    .map-section {
        padding: 3rem 0;
    }
    
    .map-header {
        margin-bottom: 2rem;
    }
    
    .map-container iframe {
        height: 400px;
    }

    .contact-intro h2,
    .faq-header h2 {
        font-size: 2rem;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 2.5rem 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn-send-message {
        width: 100%;
        text-align: center;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-breadcrumb {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-breadcrumb .separator {
        display: none;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .contact-section-title {
        font-size: 1.8rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq-icon i {
        font-size: 0.8rem;
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-pin {
        width: 40px;
        height: 40px;
    }
    
    .map-pin i {
        font-size: 1.2rem;
    }
}


/* Map Section */
.map-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-teal);
    margin-bottom: 1rem;
}

.map-header p {
    font-size: 1.1rem;
    color: #666;
}

.map-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(12, 79, 88, 0.4);
    pointer-events: none;
    animation: bounce 2s infinite;
}

.map-pin i {
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}
