/* ============================================
   CONTACT PAGE
   contact.css
============================================ */

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---------- HERO ---------- */
.contact-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    background: #070e1c;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(226,79,6,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.ch-glow-blue {
    position: absolute;
    bottom: -100px; left: -60px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(41,121,196,0.16) 0%, transparent 65%);
    pointer-events: none;
}

.ch-accent-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #e24f06 30%, #e24f06 70%, transparent);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5rem;
}

.ch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e24f06;
    margin-bottom: 18px;
    animation: heroFadeIn 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}
.ch-eyebrow-line { width: 32px; height: 1px; background: #e24f06; }

.contact-hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}
.contact-hero-content h1 span { color: #e24f06; }

.contact-hero-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    max-width: 460px;
    line-height: 1.8;
    border-left: 2px solid rgba(226,79,6,0.4);
    padding-left: 1rem;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.55s;
    opacity: 0;
}

.ch-clip {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: #f7f4f0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

/* ---------- QUICK INFO STRIP ---------- */
.contact-info-strip {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
}

.cis-inner {
    display: flex;
    align-items: stretch;
}

.cis-item {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid #ebebeb;
    transition: background 0.3s ease;
    text-decoration: none;
}
.cis-item:last-child { border-right: none; }
.cis-item:hover { background: #fdf8f5; }

.cis-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: #fff4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.cis-item:hover .cis-icon { background: #e24f06; }
.cis-icon i { font-size: 1.3rem !important; color: #e24f06 !important; transition: color 0.3s ease; }
.cis-item:hover .cis-icon i { color: #fff !important; }

.cis-label {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 4px;
}

.cis-val {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* ---------- MAIN CONTACT SECTION ---------- */
.contact-main {
    background: #f7f4f0;
    padding: 80px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* --- Form --- */
.contact-form-wrap {
    background: #ffffff;
    border-radius: 12px;
    padding: 44px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.cf-head {
    margin-bottom: 32px;
}

.cf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e24f06;
    margin-bottom: 10px;
}
.cfe-dot { width: 5px; height: 5px; border-radius: 50%; background: #e24f06; }

.cf-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    color: #00227e;
    line-height: 1;
    letter-spacing: -0.01em;
}
.cf-head h2 span { color: #e24f06; }

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.cf-field label {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #222;
    background: #f9f6f2;
    border: 1px solid #e8e4df;
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    width: 100%;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: #e24f06;
    background: #ffffff;
}

.cf-field textarea { resize: vertical; min-height: 130px; }

.cf-submit {
    display: inline-block;
    background: #e24f06;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    padding: 15px 48px 15px 32px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    transition: background 0.25s, transform 0.2s;
    width: 100%;
    margin-top: 8px;
}
.cf-submit:hover { background: #c43e00; transform: translateX(4px); }

/* --- Right Column --- */
.contact-right { display: flex; flex-direction: column; gap: 32px; }

.cr-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 280px;
    background: #ddd;
}

.cr-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cr-details {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cr-details h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: #00227e;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0ece8;
}

.cr-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.cr-detail-item:last-child { margin-bottom: 0; }

.cdi-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: #fff4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cdi-icon i { font-size: 1rem !important; color: #e24f06 !important; }

.cdi-label {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 3px;
}

.cdi-val {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.cr-hours {
    background: #0b1528;
    border-radius: 12px;
    padding: 28px 36px;
}

.cr-hours h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hours-row:last-child { border-bottom: none; }

.hours-day {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

.hours-time {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e24f06;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 28px; }
}

@media (max-width: 900px) {
    .contact-hero-content { padding: 0 2rem; }
    .cis-inner { flex-wrap: wrap; }
    .cis-item { flex: 1 1 48%; border-bottom: 1px solid #ebebeb; }
    .cf-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .cis-item { flex: 1 1 100%; }
}
* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 1.9rem !important;
    color: #ffffff !important;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Pulse ring animation */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 4px 20px rgba(37,211,102,0.35); }
    60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.35); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.35); }
}

/* Tooltip label */
.whatsapp-float::before {
    content: 'Chat with us';
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(6px);
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float i { font-size: 1.6rem !important; }
    .whatsapp-float::before { display: none; }
}