/* ============================================
   CONTACT PAGE STYLES
   Colors: #00676d, #0099b0, #f47a20
   ============================================ */

/* PAGE HERO - Gradient Background */
.page-hero {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 100px 0 52px;
    margin-top: 66px;
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-hero-tag {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.22) !important;
}

.page-hero-title {
    font-size: clamp(26px,4vw,46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #ffffff;
    margin: 10px 0 12px;
}

.page-hero-grad {
    background: linear-gradient(135deg, #f47a20 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 560px;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 40px;
    }
    .page-hero-sub {
        font-size: 14px;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* CONTACT INFO */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0,103,109,0.1), rgba(0,153,176,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-details h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.info-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* SOCIAL CONNECT */
.social-connect h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-link-contact {
    width: 40px;
    height: 40px;
    background: #f8f9fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00676d;
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid #eef2f6;
}

.social-link-contact:hover {
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    transform: translateY(-3px);
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: #f8f9fc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.contact-form > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0099b0;
    box-shadow: 0 0 0 3px rgba(0,153,176,0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,103,109,0.3);
    gap: 12px;
}

.form-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 16px;
}

/* MAP SECTION */
.map-section {
    padding: 0 0 60px 0;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 0 80px;
    background: #f8f9fc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0,153,176,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background: white;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.faq-question i {
    font-size: 14px;
    color: #0099b0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px 24px;
}

.faq-answer p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CTA STRIP */
.cta-strip {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h2 {
    font-size: clamp(20px,3vw,30px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: #ffffff;
    color: #00676d;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-primary:hover {
    background: #f8f9fc;
    transform: translateY(-2px);
}

.btn-cta-ghost {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.45);
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .contact-form h2 {
        font-size: 24px;
    }
    
    .info-card {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    
    .info-details h4 {
        text-align: center;
    }
    
    .info-details p {
        text-align: center;
    }
    
    .social-links-contact {
        justify-content: center;
    }
    
    .faq-question {
        padding: 14px 18px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-actions .btn {
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 28px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}


/* CAPTCHA STYLES */
.captcha-group {
    margin-bottom: 20px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.captcha-question {
    background: linear-gradient(135deg, #f8f9fc, #eef2f6);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #00676d;
    border: 1px solid #eef2f6;
    min-width: 120px;
    text-align: center;
}

.captcha-container input {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    font-size: 14px;
}

.captcha-refresh {
    background: #f8f9fc;
    border: 1px solid #eef2f6;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    color: #00676d;
    font-size: 16px;
    transition: all 0.3s;
}

.captcha-refresh:hover {
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    transform: rotate(180deg);
}

.captcha-note {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 8px;
}

/* Honeypot - hidden from humans, visible to bots */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Required field indicator */
.req {
    color: #f47a20;
}

@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-question {
        text-align: center;
    }
    
    .captcha-refresh {
        align-self: flex-start;
    }
}