/* 
===============================================
    CONTACT PAGE STYLESHEET
===============================================
*/

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
    position: relative;
    padding-bottom: 10px;
    color: var(--text-primary);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-decoration: none;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.footer-links a::before {
    content: '›';
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 25px;
    gap: 0;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px 0 0 50px;
    background: var(--bg-surface);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(var(--secondary), 0.4);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 0 20px;
    }
}

/* ===== 1. CONTACT HERO BANNER ===== */
.contact-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
}

.contact-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 60, 0.7) 0%, rgba(30, 60, 120, 0.5) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-hero-content .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-hero-content .breadcrumb a:hover {
    color: var(--secondary);
}

.contact-hero-content .breadcrumb i {
    font-size: 0.7rem;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-content h1 span {
    color: var(--secondary);
}

.contact-hero-content .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero Contact Stats */
.hero-contact-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.hero-stat-item div {
    text-align: left;
}

.hero-stat-item small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.hero-stat-item strong {
    display: block;
    font-size: 1rem;
}

/* ===== 2. CONTACT INFO CARDS ===== */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: var(--transition);
}

.contact-info-card:hover .info-icon {
    transform: rotateY(360deg);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.contact-info-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.view-map-btn,
.call-btn,
.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.view-map-btn {
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
}

.call-btn {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.email-btn {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.view-map-btn:hover,
.call-btn:hover,
.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Open Status */
.open-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.open {
    background: #22c55e;
}

.status-indicator.closed {
    background: #ef4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== 3. CONTACT FORM & MAP ===== */
.contact-form-map-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form Styles */
.form-header,
.map-header {
    margin-bottom: 2rem;
}

.sec-tag {
    display: inline-block;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.sec-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.sec-title span {
    color: var(--primary);
}

.form-header p,
.map-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-surface);
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary), 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--primary), 0.4);
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid #22c55e;
}

.form-success-message i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.form-success-message p {
    color: var(--text-muted);
}

/* Map Styles */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.map-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-feature-btn {
    flex: 1;
    min-width: 150px;
    background: var(--bg-surface);
    color: var(--text-main);
    padding: 0.9rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.map-feature-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== 4. DEPARTMENTS SECTION ===== */
.departments-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header.text-center {
    text-align: center;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.dept-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.dept-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.dept-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.dept-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.dept-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.dept-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dept-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    background: rgba(var(--primary), 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.dept-contact a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== 5. FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-alt);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== 6. SOCIAL MEDIA SECTION ===== */
.social-media-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-main);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.social-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Media Colors */
.social-card.facebook i { color: #1877f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.youtube i { color: #ff0000; }
.social-card.twitter i { color: #1da1f2; }

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.social-card.facebook:hover { border-color: #1877f2; }
.social-card.instagram:hover { border-color: #e4405f; }
.social-card.youtube:hover { border-color: #ff0000; }
.social-card.twitter:hover { border-color: #1da1f2; }

/* ===== 7. EMERGENCY CONTACT ===== */
.emergency-contact-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.emergency-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.emergency-icon {
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 5rem;
    color: #ef4444;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.emergency-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.emergency-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.emergency-numbers {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.emergency-number:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-3px);
}

.emergency-number i {
    font-size: 1.5rem;
    color: #ef4444;
}

.emergency-number small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.emergency-number strong {
    display: block;
    color: #ef4444;
    font-size: 1.1rem;
}

/* ===== 8. CALL TO ACTION ===== */
.contact-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline-light {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-contact-stats {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .emergency-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .emergency-numbers {
        flex-direction: column;
        align-items: center;
    }

    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================= */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }

    .dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* Medium Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .dept-grid,
    .emergency-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        height: 400px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .faq-container {
        padding: 20px;
    }
}

/* Small Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
    .contact-hero {
        height: 350px;
    }

    .contact-hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-hero-content p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 20px;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 15px;
    }
}
