/* Contact Page Styles */

:root {
    --contact-secondary: #0c1c35;
}

.contact-wrapper {
    padding: 60px 0;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.breadcrumb-item a {
    color: var(--contact-secondary);
    text-decoration: none;
}

/* ===== Popup-style form card ===== */
.popup-form-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    background: #fff;
}

.popup-form-header {
    background: url('/images/floral_header.png') no-repeat center center;
    background-size: cover;
    padding: 45px 30px;
    position: relative;
    text-align: center;
}
.popup-form-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 60, 114, 0.4), rgba(42, 82, 152, 0.85));
    z-index: 1;
}
.popup-form-header h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.popup-form-header p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Mascots */
.cute-mascot-contact {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: multiply;
    border-radius: 50%;
    bottom: -18px;
}
.mascot-contact-left  { left: -20px;  animation: mascotFloat  5s infinite ease-in-out; }
.mascot-contact-right { right: -20px; animation: mascotWobble 4s infinite ease-in-out; }

@keyframes mascotWobble {
    0%   { transform: translateY(0)   rotate(0deg);  }
    25%  { transform: translateY(-8px) rotate(5deg);  }
    50%  { transform: translateY(0)   rotate(0deg);  }
    75%  { transform: translateY(-8px) rotate(-5deg); }
    100% { transform: translateY(0)   rotate(0deg);  }
}
@keyframes mascotFloat {
    0%   { transform: translateY(0)    scale(1);    }
    50%  { transform: translateY(-12px) scale(1.05); }
    100% { transform: translateY(0)    scale(1);    }
}

/* Floating leaves & hearts */
.c-leaf, .c-heart {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.c-leaf {
    width: 18px; height: 18px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 0 100% 0 100%;
    animation: cFloatLeaf 9s infinite linear;
}
.c-heart {
    color: rgba(244, 63, 94, 0.18);
    font-size: 13px;
    animation: cFloatHeart 7s infinite ease-in-out;
}
@keyframes cFloatLeaf {
    0%   { transform: translate(0,0)          rotate(0deg);   opacity: 0; }
    20%  { opacity: .6; }
    80%  { opacity: .6; }
    100% { transform: translate(80px, 80px)   rotate(360deg); opacity: 0; }
}
@keyframes cFloatHeart {
    0%   { transform: translateY(0)   scale(1);   opacity: 0; }
    50%  { transform: translateY(-40px) scale(1.2); opacity: .8; }
    100% { transform: translateY(-80px) scale(1);  opacity: 0; }
}

/* Form body */
.popup-form-body {
    padding: 32px 30px 28px;
    position: relative;
}
.popup-form-body .form-control {
    background: #fff;
    border: 1.5px solid #eef2f6;
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: border-color .25s, box-shadow .25s;
}
.popup-form-body .form-control:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
    outline: none;
}
.popup-form-body textarea.form-control {
    height: 130px;
    resize: none;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 10px 20px rgba(21,128,61,.2);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 14px 0;
    width: 75%;
    margin: 6px auto 0;
    display: block;
    position: relative;
    z-index: 5;
    transition: all .3s;
}
.btn-contact-submit:hover {
    background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(21,128,61,.3);
}

/* Success state */
.contact-success {
    text-align: center;
    display: none;
    padding: 60px 30px;
}
.contact-success i { font-size: 4.5rem; color: #198754; margin-bottom: 20px; display: block; }
.contact-success h5 { font-size: 1.8rem; font-weight: 700; }
