/* Professional & Modern Footer Design */
.footer {
    background: #14342c;
    color: white;
    padding: 60px 10%;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Section (Logo & About) */
.footer-left {
    flex: 1;
    min-width: 280px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h2 {
    font-size: 26px;
    font-weight: bold;
}

.med { color: white; }
.pro { color: #e89b85; }

.footer-left p {
    margin-top: 15px;
    color: #e5e5e5;
    line-height: 1.6;
    font-size: 14px;
    max-width: 400px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    font-size: 22px;
    margin-top: 15px;
}

.social-icons i {
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    color: white;
}

.social-icons i:hover {
    color: #e89b85;
    transform: scale(1.1);
}
.directions-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #e89b85;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}

.directions-btn:hover {
    background: white;
    color: #e89b85;
}
.mmap-container {
    margin-top: 15px;
    border-radius: 6px;
    overflow: hidden;
}

/* Middle Section (Quick Links & Contact) */
.footer-middle {
    flex: 2;
    min-width: 280px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.quick-links, .contact-details {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.quick-links h3, .contact-details h3, .footer-subscribe h3 {
    font-size: 18px;
    color: #e89b85;
    margin-bottom: 12px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin: 8px 0;
}

.quick-links ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}

.quick-links ul li a:hover {
    color: #e89b85;
}

/* Contact Details */
.contact-details p {
    font-size: 14px;
    margin: 8px 0;
    color: azure;
}

/* Right Section (Newsletter) */
.footer-subscribe {
    flex: 1;
    min-width: 280px;
}

.subscribe-box {
    display: flex;
    border: 1px solid #e89b85;
    border-radius: 6px;
    overflow: hidden;
    background: #1e4d3d;
}

.subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: white;
    outline: none;
    font-size: 14px;
}

.subscribe-box input::placeholder {
    color: #e89b85;
}

.subscribe-btn {
    background: #e89b85;
    border: none;
    padding: 12px 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: white;
    color: #e89b85;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #e89b85;
    padding-top: 15px;
    font-size: 14px;
    color: white;
}
.footer-bottom p {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-left .logo, .social-icons {
        justify-content: center;
    }
    .footer-middle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 30px;
        width: 100%;
    }
    .quick-links, .contact-details {
        text-align: left;
        width: 48%;
    }
    .subscribe-box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 5%;
    }
    .footer-middle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 20px;
        width: 100%;
    }
    .quick-links, .contact-details {
        text-align: left;
        font-size: 14px;
        width: 48%;
    }
    .subscribe-box input {
        width: 100%;
    }
    .subscribe-btn {
        padding: 10px;
    }
}





















/* Floating Social Media Panel Styles */
.social-media-panel {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.social-stack-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 12px 6px;
    background: transparent;
    border-radius: 24px 0 0 24px;
    /* box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(4px); */
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.social-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.social-icon-link:hover {
    transform: translateX(-8px) scale(1.1);
}

.social-icon-link .social-tooltip {
    position: absolute;
    right: 100%;
    white-space: nowrap;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover .social-tooltip {
    opacity: 1;
    margin-right: 12px;
}

/* Individual Social Icon Colors */
.fb-social-icon {
    background: #3b5998;
}

.yt-social-icon {
    background: #ff0000;
}

.ig-social-icon {
    background: #e1306c;
}

.wa-social-icon {
    background: #25D366;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-media-panel {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }
    
    .social-stack-container {
        flex-direction: column;
        border-radius: 24px;
        padding: 6px 12px;
    }
    
    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .social-icon-link:hover {
        transform: translateY(-4px) scale(1.1);
    }
    
    .social-icon-link .social-tooltip {
        bottom: 100%;
        right: 50%;
        transform: translateX(50%);
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .social-icon-link:hover .social-tooltip {
        margin-right: 0;
        margin-bottom: 12px;
    }
}


















/* Emergency Contact Panel Styles */
.emergency-contact-panel {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    transition: all 0.3s ease;
    
}
.emergency-tab-handle {
    background-color: #e74c3c;
    color: white;
    width: 25px; /* Reduced width */
    padding: 10px 0; /* Vertical padding only */
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.emergency-tab-handle:hover {
    background-color: #c0392b;
}

.emergency-alert-icon {
    font-size: 16px;
    margin-bottom: 4px;
}

.emergency-tab-text {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}


.emergency-contact-drawer {
    width: 0;
    overflow: hidden;
    background-color: white;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.emergency-contact-panel.active .emergency-contact-drawer {
    width: 250px;
    padding: 20px;
}

.emergency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.emergency-title {
    color: #e74c3c;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.emergency-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #777;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.emergency-close-btn:hover {
    color: #333;
}

.emergency-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emergency-contact-item {
    margin-bottom: 15px;
}

.emergency-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.emergency-link:hover {
    background-color: #f5f5f5;
    transform: translateX(3px);
}

.emergency-icon {
    margin-right: 10px;
    font-size: 18px;
}

.emergency-number {
    font-weight: 600;
    font-size: 15px;
}

.emergency-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #777;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .emergency-contact-panel {
        top: auto;
        bottom: 200px;
        transform: none;
    }
    
    .emergency-tab-handle {
        writing-mode: vertical-rl;
        padding: 10px 0px;
        
    }
    
    .emergency-alert-icon {
        margin-bottom: 0;
        margin-right: 8px;
    }
    
    .emergency-contact-panel.active .emergency-contact-drawer {
        position: fixed;
        bottom: 200px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: 300px;
    }
}

















/* Callback Section */
/* Callback Section */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Callback section styles */
.callback-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.callback-content {
    flex: 1 1 50%;
    min-width: 300px;
    padding-right: 30px;
}

.callback-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.callback-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.callback-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.callback-description {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 16px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.mobile-input-wrapper {
    display: flex;
    gap: 10px;
}

.mobile-input-wrapper input {
    flex: 1;
}

.otp-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.otp-btn:hover {
    background-color: #2980b9;
}

.otp-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.otp-actions {
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
    font-size: 14px;
}

.otp-link {
    color: #3498db;
    text-decoration: none;
    cursor: pointer;
}

.otp-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .callback-section {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .callback-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .callback-title {
        font-size: 24px;
    }
    
    .mobile-input-wrapper {
        flex-direction: column;
    }
    
    .otp-btn {
        width: 100%;
    }
}