/* ===== CONTACT PAGE STYLES ===== */

/* HERO */
.contact-hero {
    margin-top: 68px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 64px 20px 56px;
    position: relative;
    overflow: hidden;
}

.contact-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.shape-1 { width: 340px; height: 340px; top: -100px; right: -80px; }
.shape-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }
.shape-3 { width: 120px; height: 120px; top: 40%; left: 40%; }

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.contact-hero-text h1 {
    font-size: 2.4rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-hero-text h1 .highlight {
    color: #7ba3e0;
}

.contact-hero-text p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 1.75rem;
}

.hero-quick-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: white;
    color: var(--navy);
    transition: all 0.3s;
}

.hero-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-quick-btn.whatsapp {
    background: #25d366;
    color: white;
}

.hero-quick-btn.whatsapp:hover { background: #1ebe5d; }

/* HERO CARD STACK */
.hero-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-info-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    backdrop-filter: blur(8px);
}

.hero-info-card i {
    font-size: 1.6rem;
    color: #7ba3e0;
    flex-shrink: 0;
}

.hero-info-card strong {
    display: block;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-info-card span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}

/* CONTACT INFO CARDS */
.contact-info-section {
    padding: 60px 20px;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(10,31,68,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--navy);
}

.contact-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
}

.card-link:hover { gap: 0.7rem; }

/* CONTACT MAIN SECTION */
.contact-main-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

/* SIDE INFO */
.side-info-header { margin-bottom: 2rem; }
.side-info-header h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.side-info-header p { color: var(--text-gray); line-height: 1.7; }

.side-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.side-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.side-icon {
    width: 42px;
    height: 42px;
    background: rgba(10,31,68,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    flex-shrink: 0;
}

.side-contact-list strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.side-contact-list span,
.side-contact-list a {
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
}

.side-contact-list a:hover { color: var(--navy); }

.side-social p {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.soc-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.soc-btn.fb  { background: #1877f2; }
.soc-btn.ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-btn.yt  { background: #ff0000; }
.soc-btn.li  { background: #0077b5; }
.soc-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* CONTACT FORM */
.contact-form-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-box-header {
    margin-bottom: 1.75rem;
}

.form-box-header h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.form-box-header p  { color: var(--text-gray); font-size: 0.9rem; }

.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.field-group { display: flex; flex-direction: column; gap: 0.4rem; }

.field-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.field-group label i { color: var(--navy); font-size: 0.8rem; }

.field-group input,
.field-group select,
.field-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.93rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,31,68,0.08);
}

.field-group textarea { resize: vertical; }

.field-error {
    font-size: 0.8rem;
    color: #e74c3c;
    display: none;
}

.field-group.error input,
.field-group.error select,
.field-group.error textarea {
    border-color: #e74c3c;
}

.field-group.error .field-error { display: block; }

.submit-inquiry-btn {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10,31,68,0.25);
}

.submit-inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10,31,68,0.35);
}

.form-success-msg {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: rgba(39,174,96,0.1);
    border: 1px solid rgba(39,174,96,0.3);
    color: #27ae60;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
}

/* MAP SECTION */
.map-section-new {
    padding: 60px 20px;
    background: var(--white);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 { margin-bottom: 0.5rem; }
.map-header p  { color: var(--text-gray); }

.map-embed-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    border: 0;
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 2;
}

.map-overlay-badge i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.map-overlay-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.map-overlay-badge span {
    font-size: 0.78rem;
    color: var(--text-gray);
}

/* CONTACT CTA */
.contact-cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-shapes .cta-shape-1,
.contact-cta-shapes .cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
.cta-shape-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }

.contact-cta-inner { position: relative; z-index: 1; }

.cta-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-cta-inner h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-cta-inner p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-btn-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-btn-primary {
    background: white;
    color: var(--navy);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-hero { padding: 40px 12px 32px; margin-top: 60px; }
    .contact-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-hero-text h1 { font-size: 1.6rem; }
    .hero-card-stack { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .hero-info-card { padding: 0.9rem; }
    .hero-info-card strong { font-size: 1.1rem; }
    .hero-quick-links { gap: 0.75rem; }
    .hero-quick-btn { padding: 0.65rem 1.1rem; font-size: 0.88rem; }

    .contact-info-section { padding: 36px 12px; }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .contact-card { padding: 1.25rem 1rem; }
    .contact-card h3 { font-size: 0.95rem; }
    .contact-card p { font-size: 0.85rem; }

    .contact-main-section { padding: 36px 12px; }
    .contact-main-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .side-info-header h2 { font-size: 1.4rem; }
    .form-row-2 { grid-template-columns: 1fr; gap: 1rem; }
    .contact-form-box { padding: 1.5rem 1rem; }
    .field-group input, .field-group select, .field-group textarea { font-size: 16px; }

    .map-section-new { padding: 36px 12px; }
    .map-embed-wrapper iframe { height: 260px; }
    .map-overlay-badge { top: 10px; left: 10px; padding: 0.5rem 0.75rem; }
    .map-overlay-badge strong { font-size: 0.8rem; }
    .map-overlay-badge span { font-size: 0.7rem; }

    .contact-cta-section { padding: 44px 12px; }
    .contact-cta-inner h2 { font-size: 1.5rem; }
    .contact-cta-inner p { font-size: 0.9rem; }
    .cta-btn-row { gap: 0.75rem; }
    .cta-btn-primary, .cta-btn-outline { padding: 0.75rem 1.4rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .hero-card-stack { grid-template-columns: 1fr; }
    .hero-quick-links { flex-direction: column; }
    .hero-quick-btn { justify-content: center; }
    .contact-hero-text h1 { font-size: 1.35rem; }
    .cta-btn-row { flex-direction: column; align-items: center; }
    .cta-btn-primary, .cta-btn-outline { width: 100%; justify-content: center; }
}
