/* ========== CONTACT PAGE STYLES ========== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== PAGE HEADER WITH LIVE VISITOR ========== */
.page-header {
    background: linear-gradient(135deg, #000080 0%, #0000b3 100%);
    padding: 60px 0 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-visitor {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.live-visitor i {
    color: #4ade80;
    margin-right: 8px;
    font-size: 0.8rem;
}

.live-visitor span {
    font-weight: 700;
    color: #ffd700;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.response-time {
    margin-top: 20px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 40px;
}

.response-time .highlight {
    color: #ffd700;
    font-weight: 700;
}

/* ========== EMERGENCY BANNER ========== */
.emergency-banner {
    margin: -25px 0 40px;
    position: relative;
    z-index: 10;
}

.emergency-content {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 25px 35px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.emergency-icon {
    width: 65px;
    height: 65px;
    background: #000080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.emergency-text h3 {
    color: #000080;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.emergency-text p {
    color: #333;
    opacity: 0.8;
}

.emergency-call-btn {
    background: #000080;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.emergency-call-btn:hover {
    background: transparent;
    color: #000080;
    border-color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== CONTACT INFO CARDS ========== */
.contact-info-cards {
    padding: 40px 0 20px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: white;
    padding: 35px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,128,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,128,0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #000080);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: translateX(0);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,128,0.15);
}

.info-icon-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
}

.info-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 25px rgba(0,0,128,0.2);
    position: absolute;
    top: 0;
    left: 5px;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(360deg);
    background: #ffd700;
    color: #000080;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.info-detail {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-detail a:hover {
    color: #000080;
}

.info-sub {
    font-size: 0.85rem;
    color: #999;
}

.working-status {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.open {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: blink 2s infinite;
}

.info-card-hover {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    padding: 10px;
    transition: bottom 0.3s ease;
}

.info-card:hover .info-card-hover {
    bottom: 0;
}

.info-card-hover span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== QUICK CONNECT BAR ========== */
.quick-connect-bar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,128,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 20px;
    border-radius: 35px 35px 0 0;
}

.quick-connect-content {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.quick-connect-text {
    color: #000080;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.quick-connect-text i {
    color: #ffd700;
}

.quick-connect-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-option {
    background: #f0f0ff;
    color: #000080;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-option:hover {
    background: #000080;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,128,0.2);
}

.quick-option i {
    font-size: 1rem;
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
    padding: 50px 0 70px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

/* Form Container */
.contact-form-container {
    background: white;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 20px 45px rgba(0,0,128,0.1);
    position: relative;
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000080;
    margin-bottom: 12px;
}

.form-header p {
    color: #666;
    line-height: 1.6;
}

.form-header .highlight {
    color: #000080;
    font-weight: 700;
}

/* Floating Labels */
.form-floating-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-floating input,
.form-floating select,
.form-floating textarea {
    width: 100%;
    padding: 16px 15px 16px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-floating textarea {
    resize: vertical;
    min-height: 110px;
}

.form-floating input:focus,
.form-floating select:focus,
.form-floating textarea:focus {
    border-color: #000080;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,0,128,0.1);
}

.form-floating label {
    position: absolute;
    left: 48px;
    top: 16px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
    font-size: 1rem;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating select:focus ~ label,
.form-floating select:not([value=""]) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 38px;
    font-size: 0.8rem;
    color: #000080;
}

.field-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #000080;
    font-size: 1.2rem;
    opacity: 0.7;
}

.textarea-icon {
    top: 18px;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #999;
    margin: -10px 0 15px;
}

.char-counter span {
    color: #000080;
    font-weight: 600;
}

/* File Attachment */
.file-attachment {
    margin: 20px 0;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f0f0ff;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.file-label:hover {
    background: #000080;
    color: white;
}

.file-label i {
    color: #ffd700;
}

.file-name {
    margin-left: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* CAPTCHA */
.captcha-box {
    background: #f8f9ff;
    padding: 20px 25px;
    border-radius: 18px;
    margin: 20px 0;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-question span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.captcha-question input {
    width: 80px;
    padding: 10px 15px;
    border: 2px solid #000080;
    border-radius: 40px;
    font-size: 1rem;
    text-align: center;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-group input {
    width: auto;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000080;
}

.checkbox-group label {
    color: #666;
    cursor: pointer;
}

.checkbox-group a {
    color: #000080;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,128,0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Form Status */
.form-status {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 15px;
    display: none;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.typing-indicator.active {
    display: flex;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #000080;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.typing-text {
    margin-left: 5px;
    color: #666;
    font-size: 0.9rem;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
    30% { transform: translateY(-10px); opacity: 1; }
}

/* ========== MAP CONTAINER ========== */
.map-container {
    background: white;
    padding: 35px;
    border-radius: 35px;
    box-shadow: 0 20px 45px rgba(0,0,128,0.1);
}

.map-container h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000080;
    margin-bottom: 25px;
}

.map-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.map-control {
    width: 42px;
    height: 42px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000080;
    font-size: 1rem;
}

.map-control:hover {
    background: #000080;
    color: white;
    transform: scale(1.1);
}

.map {
    border-radius: 20px;
    overflow: hidden;
}

.map iframe {
    transition: all 0.3s ease;
}

.map-search {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    background: white;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-search input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
}

.map-search input:focus {
    outline: none;
}

.map-search button {
    width: 45px;
    height: 45px;
    background: #000080;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-search button:hover {
    background: #ffd700;
    color: #000080;
}

/* Directions Box */
.directions-box {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.directions-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.directions-box h3 i {
    color: #000080;
}

.direction-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direction {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    background: white;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.direction:hover {
    border-color: #000080;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,128,0.1);
}

.direction i {
    width: 45px;
    height: 45px;
    background: #000080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.direction > div {
    flex: 1;
}

.direction-label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.direction-detail {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.direction-distance {
    font-size: 0.8rem;
    color: #000080;
    font-weight: 600;
}

/* Distance Result */
.distance-result {
    margin-top: 20px;
    padding: 15px 20px;
    background: #000080;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

.distance-result i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Weather Widget */
.weather-widget {
    background: linear-gradient(135deg, #000080, #0000b3);
    padding: 18px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
}

.weather-widget i {
    font-size: 2rem;
    color: #ffd700;
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-size: 1.4rem;
    font-weight: 800;
}

.weather-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== LOCATIONS SECTION ========== */
.locations-section {
    padding: 70px 0;
    background: #f8f9ff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.section-title span {
    color: #000080;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,128,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,128,0.2);
}

.location-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #ffd700;
    color: #000080;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-content {
    padding: 25px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.location-header i {
    color: #000080;
    font-size: 1.4rem;
}

.location-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.location-content p {
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.location-content i {
    color: #ffd700;
    width: 20px;
    margin-top: 3px;
}

.location-contact {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.location-contact a {
    color: #000080;
    text-decoration: none;
}

.location-contact a:hover {
    text-decoration: underline;
}

.location-timing {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    margin-bottom: 15px;
}

.location-timing i {
    color: #ffd700;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #f0f0ff;
    color: #000080;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.location-actions {
    display: flex;
    gap: 12px;
}

.location-link,
.location-call {
    flex: 1;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.location-link {
    background: #000080;
    color: white;
}

.location-call {
    background: #f0f0ff;
    color: #000080;
}

.location-link:hover {
    background: #ffd700;
    color: #000080;
    transform: translateY(-2px);
}

.location-call:hover {
    background: #000080;
    color: white;
    transform: translateY(-2px);
}

/* ========== SOCIAL CONNECT ========== */
.social-connect {
    padding: 70px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.social-card {
    background: white;
    padding: 28px 15px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(0,0,128,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,128,0.05);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-card:hover::before {
    transform: translateY(0);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,128,0.15);
}

.social-card i {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.social-name {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.social-followers {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.social-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 30px;
}

.social-status i {
    font-size: 0.6rem;
    margin: 0;
    color: #4ade80;
}

.social-card.facebook i { color: #1877f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.youtube i { color: #ff0000; }
.social-card.linkedin i { color: #0077b5; }
.social-card.twitter i { color: #1da1f2; }
.social-card.whatsapp i { color: #25d366; }

.social-card.facebook:hover { background: #1877f2; }
.social-card.instagram:hover { background: #e4405f; }
.social-card.youtube:hover { background: #ff0000; }
.social-card.linkedin:hover { background: #0077b5; }
.social-card.twitter:hover { background: #1da1f2; }
.social-card.whatsapp:hover { background: #25d366; }

.social-card:hover i,
.social-card:hover .social-name,
.social-card:hover .social-followers,
.social-card:hover .social-status {
    color: white;
}

.social-card:hover .social-status {
    background: rgba(255,255,255,0.2);
}

/* ========== BUSINESS HOURS ========== */
.business-hours {
    padding: 70px 0;
    background: #f8f9ff;
}

.hours-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0,0,128,0.1);
}

.hours-wrapper h2 {
    text-align: center;
    color: #000080;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2rem;
}

.hours-grid {
    display: grid;
    gap: 15px;
}

.hour-item {
    display: grid;
    grid-template-columns: 120px 1fr 90px;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 700;
    color: #333;
}

.time {
    color: #666;
}

.status {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 600;
}

.status.open {
    color: #4ade80;
}

.status.closed {
    color: #ff6b6b;
}

.holiday-notice {
    margin-top: 30px;
    padding: 15px 20px;
    background: #fff3cd;
    color: #856404;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 70px 0;
    background: #f8f9ff;
}

.faq-search {
    position: relative;
    max-width: 550px;
    margin: 0 auto 45px;
}

.faq-search input {
    width: 100%;
    padding: 16px 22px 16px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    border-color: #000080;
    outline: none;
    box-shadow: 0 8px 25px rgba(0,0,128,0.1);
}

.faq-search i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #000080;
    font-size: 1.1rem;
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,128,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 28px rgba(0,0,128,0.12);
}

.faq-question {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question i:first-child {
    color: #000080;
}

.faq-question i:last-child {
    color: #000080;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafaff;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 20px 28px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer a {
    color: #000080;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-helpful {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.faq-helpful span {
    color: #666;
    font-size: 0.9rem;
}

.faq-helpful button {
    background: none;
    border: 1px solid #000080;
    color: #000080;
    padding: 4px 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.faq-helpful button:hover {
    background: #000080;
    color: white;
}

.faq-not-found {
    text-align: center;
    padding: 50px;
    color: #666;
}

.faq-not-found i {
    font-size: 3.5rem;
    color: #000080;
    margin-bottom: 18px;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-content h3 i {
    color: #ffd700;
}

.newsletter-content p {
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    min-width: 320px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.3);
}

.newsletter-input-group button {
    padding: 16px 35px;
    background: #ffd700;
    color: #000080;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input-group button:hover {
    background: white;
    transform: translateY(-2px);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.newsletter-checkbox input {
    width: auto;
    accent-color: #ffd700;
}

/* ========== CHAT WIDGET ========== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 340px;
    background: white;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-widget.minimized {
    width: auto;
    height: auto;
}

.chat-widget.minimized .chat-body {
    display: none;
}

.chat-header {
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.chat-header i:first-child {
    font-size: 1.3rem;
}

.chat-status {
    margin-left: auto;
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
}

.chat-toggle {
    transition: transform 0.3s ease;
}

.chat-widget.minimized .chat-toggle {
    transform: rotate(180deg);
}

.chat-body {
    max-height: 420px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    background: #f8f9ff;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-message.received {
    align-items: flex-start;
}

.chat-message.sent {
    align-items: flex-end;
}

.message-content {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.received .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sent .message-content {
    background: #000080;
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 3px;
}

.chat-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    font-size: 0.95rem;
    margin-right: 10px;
}

.chat-input input:focus {
    outline: none;
    border-color: #000080;
}

.chat-input button {
    width: 45px;
    height: 45px;
    background: #000080;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: #ffd700;
    color: #000080;
}

.chat-options {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9ff;
    border-top: 1px solid #e0e0e0;
}

.chat-options button {
    flex: 1;
    padding: 8px;
    background: white;
    border: 1px solid #000080;
    border-radius: 25px;
    color: #000080;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.chat-options button:hover {
    background: #000080;
    color: white;
}

/* ========== CALLBACK MODAL ========== */
.callback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.callback-modal.active {
    display: flex;
}

.callback-modal .modal-content {
    background: white;
    padding: 45px;
    border-radius: 35px;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
}

.callback-modal .close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.callback-modal .close-modal:hover {
    color: #ff6b6b;
}

.callback-modal h3 {
    color: #000080;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.callback-modal .form-group {
    margin-bottom: 20px;
}

.callback-modal input,
.callback-modal select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 18px;
    font-size: 0.95rem;
}

.callback-modal input:focus,
.callback-modal select:focus {
    border-color: #000080;
    outline: none;
}

.modal-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #000080, #0000b3);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,128,0.3);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #000080;
    color: white;
    border: 3px solid #ffd700;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: #ffd700;
    color: #000080;
    transform: scale(1.1);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .live-visitor {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 35px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-floating-group {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hour-item {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }
    
    .status {
        text-align: center;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .chat-widget {
        width: 300px;
        left: 10px;
        bottom: 10px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .emergency-text h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-floating input,
    .form-floating select,
    .form-floating textarea {
        padding: 14px 12px 14px 42px;
    }
    
    .field-icon {
        left: 15px;
        top: 16px;
        font-size: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-wrapper {
        padding: 25px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .quick-connect-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-connect-options {
        justify-content: center;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .chat-widget {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .modal-content {
        padding: 30px 25px;
    }
}