/* =========================================
   VARIABLES
   ========================================= */
:root {
    /* Colors */
    --primary-color: #0E5CAD;
    /* Medical Blue */
    --secondary-color: #1ABC9C;
    /* Soft Teal */
    --accent-color: #27AE60;
    /* Soft Health Green */
    --danger-color: #E74C3C;
    /* Emergency Red */
    --warning-color: #F39C12;
    /* Star Rating */

    --bg-color: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-light: #666666;
    --text-muted: #999999;

    --border-color: #EAEAEA;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* =========================================
   RESET & GLOBALS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* =========================================
   UTILITIES
   ========================================= */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0b498a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 92, 173, 0.2);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.shadow-btn {
    box-shadow: 0 8px 15px rgba(14, 92, 173, 0.2);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.logo i {
    font-size: 2.2rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

.emergency-btn .phone-num {
    font-weight: 600;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(14, 92, 173, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.stat-item h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Floating Icons Animation */
.float-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    right: 10%;
    font-size: 4rem;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    right: 20%;
    color: var(--accent-color);
    animation-delay: 1s;
}

.icon-3 {
    top: 40%;
    right: 30%;
    color: var(--secondary-color);
    font-size: 2.5rem;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 15%;
    right: 5%;
    color: var(--danger-color);
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   COMMON COMPONENTS
   ========================================= */
.bg-light {
    background-color: var(--bg-color);
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.section-subtitle-tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(14, 92, 173, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rounded-img {
    border-radius: 20px;
    overflow: hidden;
}

.shadow-img {
    box-shadow: var(--shadow-lg);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

/* =========================================
   ABOUT US SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 20px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background-color: var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-experience {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
}

.about-experience h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    line-height: 1;
}

.about-experience p {
    font-weight: 600;
    color: var(--text-main);
}

.about-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-box i {
    font-size: 1.2rem;
}

/* =========================================
   SPECIALITIES SECTION
   ========================================= */
.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.speciality-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.speciality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition-normal);
    z-index: -1;
    border-radius: 20px;
}

.speciality-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.speciality-card:hover::before {
    height: 100%;
}

.speciality-card:hover h3,
.speciality-card:hover p {
    color: white;
}

.speciality-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(14, 92, 173, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.speciality-card:hover .icon-wrapper {
    background-color: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.speciality-card .alert-wrapper {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

.speciality-card:hover .alert-wrapper {
    background-color: white;
    color: var(--danger-color);
}

.speciality-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.speciality-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =========================================
   DOCTORS SECTION
   ========================================= */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.doctor-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.05);
}

.doctor-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: var(--transition-normal);
}

.doctor-card:hover .doctor-social {
    bottom: 0;
}

.doctor-social a {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.doctor-social a:hover {
    background: var(--primary-color);
    color: white;
}

.doctor-info {
    padding: 25px 20px;
    text-align: center;
}

.doctor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.doctor-info .font-weight-bold {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.doctor-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.shadow-btn-sm {
    box-shadow: 0 4px 10px rgba(14, 92, 173, 0.1);
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-top: 10px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stars i {
    font-size: 0.9rem;
}

.review-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-icon-small {
    position: absolute;
    right: 0;
    top: 5px;
}

.small-stars {
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

/* =========================================
   FACILITIES SECTION
   ========================================= */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.facility-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.facility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.facility-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 92, 173, 0.5);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(14, 92, 173, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.font-weight-bold {
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.mt-4 {
    margin-top: 1.5rem;
}

.contact-form-container {
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 92, 173, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #0b1c2c;
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-bg-icon {
    position: absolute;
    right: -5%;
    bottom: 0;
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-logo .logo-text p {
    color: #ccc;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #081521;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* =========================================
   MEDIA QUERIES (General)
   ========================================= */
@media screen and (max-width: 1024px) {
    .nav-list {
        gap: 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-container,
    .why-us-container {
        gap: 30px;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 868px) {
    .emergency-btn .phone-num {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 40px;
        transition: right var(--transition-normal);
        z-index: 1001;
    }

    .nav.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .about-container,
    .why-us-container {
        grid-template-columns: 1fr;
    }

    .about-img,
    .why-us-img {
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .stat-item {
        padding: 5px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 25px 20px;
    }
}