/* Radiology Page Styles - Modern Design */

:root {
    --primary-color: #00a8e8;
    --secondary-color: #0088cc;
    --dark-color: #0066aa;
    --accent-color: #00d4ff;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --bg-light: #f8fafc;
    --border-color: #e0e0e0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(135deg, #00a8e8 0%, #0088cc 50%, #0066aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
    animation: hero-bg-move 20s ease-in-out infinite;
}

@keyframes hero-bg-move {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.75), rgba(0, 136, 204, 0.75));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    animation: slide-down 1s ease-out;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fade-in-up 1s ease-out 0.3s both;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hero-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-stats .stat-item:hover::before {
    left: 100%;
}

.hero-stats .stat-item:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #7FE7FF;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover .stat-icon-wrapper {
    transform: scale(1.2) rotate(15deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(127, 231, 255, 0.3);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.2em;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 8rem;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 8%;
    font-size: 6rem;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 10%;
    left: 10%;
    font-size: 7rem;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #D1E7F7 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #333;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
}

.highlight-item i {
    color: #00a8e8;
    font-size: 1.5rem;
    min-width: 24px;
}

.overview-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.overview-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.2);
    transition: transform 0.3s ease;
    display: block;
    object-fit: cover;
}

.overview-image img:hover {
    transform: scale(1.05);
}

.overview-text h2 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00a8e8, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 18px;
}

.feature-content h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #f0f0f0;
}

.service-card:hover {
    border-color: #00a8e8;
    box-shadow: 0 15px 50px rgba(0, 168, 232, 0.15);
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00a8e8, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    font-size: 0.9rem;
    color: #666;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a8e8;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid #00a8e8;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.1);
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-item:hover .faq-question {
    background: #f0f8fc;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: #1a1a2e;
    margin: 0;
    font-weight: 600;
    text-align: left;
    flex: 1;
}

.faq-question i {
    color: #00a8e8;
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Patient Resources Section */
.patient-resources {
    padding: 80px 20px;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a8e8, #0088cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    border-color: #00a8e8;
    box-shadow: 0 15px 50px rgba(0, 168, 232, 0.15);
    transform: translateY(-8px);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a8e8, #0088cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(-10deg);
}

.resource-card h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.resource-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 0.9rem;
}

.resource-list li {
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.resource-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00a8e8;
    font-weight: bold;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a8e8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.resource-link:hover {
    gap: 12px;
    color: #0088cc;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #00a8e8 0%, #0088cc 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Benefits List */
.cta-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Contact Cards Wrapper */
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-card-large h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-description {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 0.95rem;
}

.contact-btn.primary {
    background: white;
    color: #00a8e8;
}

.contact-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-btn.secondary:hover {
    background: white;
    color: #00a8e8;
}

/* Response Info */
.response-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.response-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.response-item i {
    font-size: 24px;
    opacity: 0.9;
}

.response-item h4 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

.response-item p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    background-clip: unset !important;
}

.section-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .overview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-content h2 {
        font-size: 2.2rem;
    }

    .cta-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .response-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item {
        min-width: 150px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .overview-section {
        padding: 60px 15px;
    }

    .overview-features {
        gap: 12px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .services-section {
        padding: 60px 15px;
    }

    .faq-section {
        padding: 60px 15px;
    }

    .patient-resources {
        padding: 60px 15px;
    }

    .resources-grid {
        gap: 25px;
    }

    .contact-cta {
        padding: 60px 15px;
    }

    .cta-header h2 {
        font-size: 2.2rem;
    }

    .cta-header p {
        font-size: 1rem;
    }

    .cta-benefits h3 {
        font-size: 1.4rem;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .response-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .resource-card {
        padding: 25px 15px;
    }

    .cta-header h2 {
        font-size: 1.6rem;
    }

    .benefit-item {
        gap: 15px;
    }

    .contact-card-large {
        padding: 25px 15px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* Animation for FAQ Items */
.faq-item {
    animation: slideInFade 0.6s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect on service cards */
.service-card {
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00a8e8 0%, #0088cc 100%);
    opacity: 0;
    border-radius: 12px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.05;
}

/* Loading state */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease forwards;
    animation-delay: 1s;
    pointer-events: none;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Ensure the container is centered */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .overview-content,
    .emergency-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .tech-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .emergency-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section {
        height: 60vh;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}
