:root {
--primary-color: #4299e1;
--primary-dark: #2b6cb0;
--text-dark: #2d3748;
--text-light: #4a5568;
--bg-light: #f7fafc;
--success-color: #48bb78;
}

body{
overflow-x: hidden;
}

.contact-hero {
        background: linear-gradient(rgba(66, 153, 225, 0.1), rgba(66, 153, 225, 0.2));
        padding: 80px 0;
        text-align: center;
        position: relative;
    }
    @media (max-width:991px){
        .contact-hero{
            padding: 50px 15px;
        }
    }
    @media (max-width:543px){
        .contact-hero{
            padding: 30px 15px;
        }
    }

    .contact-hero h1 {
        font-size: 48px;
        color: var(--text-dark);
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease;
    }

    .contact-hero p {
        font-size: 18px;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        animation: fadeInUp 1s ease;
    }

    .emergency-banner {
        background-color: #FF6B6B;
        color: white;
        padding: 15px;
        text-align: center;
        /* animation: pulse 2s infinite; */
        max-width: 100%;
        overflow: hidden;
    }

    .emergency-banner i {
        margin-right: 10px;
    }

    .emergency-number {
        font-weight: bold;
        font-size: 20px;
        margin-left: 10px;
    }

    .contact-container {
        max-width: 1200px;
        margin: -50px auto 80px;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }
@media (max-width:991px){
    .contact-container{
        margin: 17px auto 30px;
    }
}
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }

    .contact-info {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
@media (max-width:543px){
    .contact-info{
        padding: 20px;
    }
}
    .info-group {
        margin-bottom: 30px;
    }

    .info-group h3 {
        color: var(--text-dark);
        font-size: 20px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .info-group h3 i {
        margin-right: 10px;
        color: var(--primary-color);
    }

    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .info-item:hover {
        background: var(--bg-light);
        transform: translateX(10px);
    }

    .info-item i {
        color: var(--primary-color);
        margin-right: 15px;
        font-size: 20px;
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        color: var(--text-dark);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    }

    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }

    .submit-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .working-hours {
        margin-top: 30px;
        padding: 20px;
        background: var(--bg-light);
        border-radius: 8px;
    }

    .hours-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .hours-item {
        padding: 10px;
        background: white;
        border-radius: 6px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .hours-item:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .day {
        font-weight: 600;
        color: var(--text-dark);
    }

    .time {
        color: var(--text-light);
        font-size: 14px;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.02);
        }
        100% {
            transform: scale(1);
        }
    }

    @media (max-width: 992px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
        
        .contact-hero h1 {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .hours-grid {
            grid-template-columns: 1fr;
        }
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 25px;
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }