/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color Variables */
:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --cyan-600: #0891b2;
    --orange-600: #ea580c;
    --purple-600: #9333ea;
    --red-600: #dc2626;
    --blue-600: #2563eb;
}

/* Utility Classes */
.text-green {
    color: var(--green-600);
}

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    padding: 0.5rem 0;
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    width: 1rem;
    height: 1rem;
}

.main-header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 2px solid var(--green-100);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--green-600);
    font-weight: 500;
}

.main-nav {
    display: none;
    gap: 3rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-600);
    border-bottom-color: var(--green-500);
}

.cta-button {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .cta-button {
        display: block;
    }
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: block;
    color: #374151;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background: var(--green-50);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: #374151;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--green-600);
    background: var(--green-100);
}

.mobile-cta-button {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    margin: 1rem;
    text-align: center;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--green-50) 0%, white 50%, rgba(6, 182, 212, 0.05) 100%);
    padding: 5rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000'%3E%3Crect x='8' y='6' width='4' height='2'/%3E%3Crect x='9' y='4' width='2' height='6'/%3E%3Ccircle cx='6' cy='14' r='1'/%3E%3Ccircle cx='14' cy='14' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-600);
    padding: 0.75rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

@media (min-width: 1024px) {
    .hero-icon {
        margin: 0 0 1.5rem 0;
    }
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
}

.hero-text p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--green-500);
    color: var(--green-600);
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--green-500);
    color: white;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--green-200);
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.trust-icon.green {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-600);
}

.trust-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-600);
}

.trust-icon.green-dark {
    background: linear-gradient(135deg, var(--green-200), var(--green-300));
    color: var(--green-700);
}

.trust-item h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    border: 4px solid white;
}

.hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--green-100);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-600);
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h4 {
    font-weight: 700;
    color: #1f2937;
}

.card-content p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-50) 0%, white 50%, var(--green-100) 100%);
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-600);
    padding: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-label {
    color: var(--green-600);
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
}

.feature-item i {
    color: var(--green-600);
    flex-shrink: 0;
}

.feature-item span {
    color: #374151;
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
}

.stat-item i {
    color: var(--green-600);
    margin-bottom: 0.75rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-item p {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.images-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.images-column.offset {
    padding-top: 3rem;
}

.about-images img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    width: 100%;
    height: auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, white 0%, var(--green-50) 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center .section-icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-600);
    padding: 0.75rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 88rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.reason-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid var(--green-100);
}

.reason-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.reason-icon {
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.reason-item:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon.green {
    background: var(--green-100);
    color: var(--green-700);
}

.reason-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-600);
}

.reason-icon.green-light {
    background: var(--green-200);
    color: var(--green-600);
}

.reason-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-600);
}

.reason-icon.purple {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple-600);
}

.reason-icon.green-dark {
    background: var(--green-100);
    color: var(--green-800);
}

.reason-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.reason-item p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--green-100);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--green-200);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.green {
    background: var(--green-100);
    color: var(--green-700);
}

.service-icon.red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red-600);
}

.service-icon.green-light {
    background: var(--green-200);
    color: var(--green-800);
}

.service-icon.orange {
    background: rgba(234, 88, 12, 0.1);
    color: var(--orange-600);
}

.service-icon.purple {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple-600);
}

.service-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-600);
}

.service-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-600);
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-item p {
    color: #6b7280;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.emergency-contact {
    background: linear-gradient(135deg, var(--green-700), var(--green-800));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.emergency-contact .emergency-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-contact h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-contact p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .emergency-buttons {
        flex-direction: row;
    }
}

.btn-white {
    background: white;
    color: var(--green-700);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f9fafb;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--green-700);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-header i {
    color: var(--green-500);
    opacity: 0.5;
    width: 2rem;
    height: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star-filled {
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-item p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #1f2937;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonials-stats .stat-item {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--green-500);
    margin-bottom: 0.5rem;
}

.testimonials-stats p {
    color: #6b7280;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
}

.footer-main {
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: var(--green-500);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-heart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-400);
}

.footer-heart span {
    font-size: 0.875rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--green-400);
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer .contact-item i {
    color: var(--green-400);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer .contact-item a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer .contact-item a:hover {
    color: var(--green-400);
}

.emergency {
    color: #ef4444;
    font-weight: 500;
}

.emergency-banner {
    background: #dc2626;
    padding: 1rem 0;
}

.emergency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .emergency-content {
        flex-direction: row;
    }
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .emergency-info {
        margin-bottom: 0;
    }
}

.emergency-info span {
    font-weight: 600;
}

.emergency-phone {
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.emergency-phone:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    background: #1f2937;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom p {
        margin-bottom: 0;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-social a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--green-400);
}

/* Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.page-content {
    padding: 2rem 0;
}

/* About Page Styles */
.about-detailed {
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-detailed {
        grid-template-columns: 1fr 1fr;
    }
}

.about-story h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-story p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-vision {
    display: grid;
    gap: 2rem;
    margin: 4rem 0;
}

@media (min-width: 768px) {
    .mission-vision {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission, .vision {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
}

.mission-icon, .vision-icon {
    background: var(--green-100);
    color: var(--green-600);
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mission h3, .vision h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mission p, .vision p {
    color: #6b7280;
    line-height: 1.6;
}

.team-section {
    margin: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.team-member img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--green-500);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-info span {
    color: #6b7280;
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
}

.value-item i {
    color: var(--green-600);
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Page Styles */
.services-detailed {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .service-detail {
        flex-direction: column;
        gap: 1rem;
    }
}

.service-detail .service-icon {
    flex-shrink: 0;
}

.service-content ul {
    list-style: none;
    margin-top: 1rem;
}

.service-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.service-content ul li::before {
    content: '•';
    color: var(--green-600);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.emergency-contact-full {
    background: linear-gradient(135deg, var(--green-700), var(--green-800));
    color: white;
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin-top: 4rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.emergency-contact-full .emergency-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .emergency-contact-full .emergency-content {
        grid-template-columns: auto 1fr auto;
        text-align: left;
    }
}

.emergency-contact-full .emergency-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .emergency-contact-full .emergency-icon {
        margin: 0;
    }
}

.emergency-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .emergency-buttons {
        flex-direction: row;
    }
}

.btn-emergency {
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #b91c1c;
}

/* Contact Page Styles */
.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
}

.contact-icon {
    padding: 1rem;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon.green {
    background: var(--green-100);
    color: var(--green-700);
}

.contact-icon.green-dark {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-600);
}

.contact-icon.green-light {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.contact-icon.orange {
    background: rgba(234, 88, 12, 0.1);
    color: var(--orange-600);
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-card a {
    color: var(--green-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    text-decoration: underline;
}

.emergency-contact-large {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-bottom: 4rem;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.emergency-header i {
    color: #dc2626;
    width: 2rem;
    height: 2rem;
}

.emergency-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7f1d1d;
}

.emergency-contact-large p {
    color: #991b1b;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.btn-emergency-large {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-emergency-large:hover {
    background: #b91c1c;
}

.quick-actions {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--green-100);
}

.action-card:first-child {
    background: var(--green-50);
}

.action-card:last-child {
    background: rgba(59, 130, 246, 0.05);
}

.action-card i {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.action-card:first-child i {
    color: var(--green-600);
}

.action-card:last-child i {
    color: #2563eb;
}

.action-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.action-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.action-card:last-child .btn-secondary {
    background: #3b82f6;
    color: white;
    border: none;
}

.action-card:last-child .btn-secondary:hover {
    background: #2563eb;
}

.map-section {
    margin: 4rem 0;
}

.map-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.map-section > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.map-placeholder {
    background: #d1d5db;
    border-radius: 0.75rem;
    height: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
}

.map-placeholder i {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 0.875rem;
}

.quick-contact-section {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.quick-contact-content {
    max-width: 48rem;
    margin: 0 auto;
}

.quick-contact-content i {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
}

.quick-contact-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--green-600);
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Animation Utilities */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 49;
    transition: opacity 0.3s;
}
.mobile-overlay.active {
    display: block;
}

@keyframes beat {
    0%, 100% { transform: scale(1); }
    20% { transform: scale(1.15); }
    40% { transform: scale(0.95); }
    60% { transform: scale(1.1); }
    80% { transform: scale(0.98); }
}
.beat-animation {
    animation: beat 1.2s infinite;
    transform-origin: center;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
    opacity: 1 !important;
}

.powered-by {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.powered-by-logo {
    display: block;
    margin: 0 auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.powered-by-logo:hover {
    opacity: 1;
}

.about-story-section .about-story h2 {
    margin-top: 2.5rem;
}

.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    font-size: 2rem;
    transition: background 0.2s;
}
.whatsapp-float:hover {
    background: #128c7e;
}
@media (max-width: 640px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
}
