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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    margin-right: 0.5rem;
}

.respite-text {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    vertical-align: middle;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    position: relative;
}

.logo-text-main {
    color: #2563eb;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.logo-arrow {
    width: 70px;
    height: 15px;
    margin-top: 2px;
    position: relative;
}

.logo-arrow::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 12px;
    border: 2px solid #fbbf24;
    border-top: none;
    border-left: none;
    border-radius: 0 0 30px 0;
    left: 5px;
}

.logo-arrow::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 8px;
    width: 0;
    height: 0;
    border-left: 6px solid #fbbf24;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.brand-text {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 0.3rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #fbbf24;
}

.cta-phone {
    background: #fbbf24;
    color: #1e293b !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1e293b;
    border: 2px solid #1e293b;
}

.btn-secondary:hover {
    background: #1e293b;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e293b;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-placeholder, .image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-placeholder i, .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-placeholder p, .image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-section ul li i {
    width: 20px;
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem 0;
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-placeholder, .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .service-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-placeholder, .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-placeholder i, .image-placeholder i {
        font-size: 2rem;
    }

    .hero-placeholder p, .image-placeholder p {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Services Page Styles */
.page-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detail {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-text {
    order: 2;
}

.service-detail.reverse .service-image {
    order: 1;
}

.service-text h2 {
    font-size: 2rem;
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-text h2 i {
    margin-right: 0.5rem;
    color: #cd853f;
}

.service-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-text h3 {
    color: #333;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-list li i {
    color: #cd853f;
    font-size: 1.1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #cd853f;
}

.feature-box h4 {
    color: #b8860b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.time-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #b8860b;
}

.time-card h4 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.time-card ul {
    list-style: none;
}

.time-card li {
    padding: 0.3rem 0;
    color: #666;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.emergency-box {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.emergency-box h4 {
    margin-bottom: 0.5rem;
}

.emergency-box i {
    margin-right: 0.5rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.specialty-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card h4 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-card i {
    color: #cd853f;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.pricing-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #cd853f;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #cd853f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    color: #cd853f;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

.nav-link.active {
    color: #3b82f6;
    font-weight: 600;
}

/* About Page Styles */
.our-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-intro {
    font-size: 1.2rem;
    color: #b8860b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #cd853f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #b8860b;
    font-weight: 600;
}

.mission-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.main-mission {
    grid-column: span 2;
}

.mission-card {
    background: linear-gradient(135deg, #b8860b, #cd853f);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    color: white;
    font-size: 1.5rem;
}

.value-card h4 {
    color: #b8860b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b8860b, #cd853f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.photo-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: #b8860b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-title {
    color: #cd853f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.credential {
    background: #e9ecef;
    color: #b8860b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.qualifications {
    padding: 5rem 0;
    background: #f8f9fa;
}

.qualifications-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.qual-list {
    list-style: none;
}

.qual-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qual-list i {
    color: #cd853f;
    font-size: 1.2rem;
}

.certifications {
    margin-top: 3rem;
}

.certifications h3 {
    color: #b8860b;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-item i {
    font-size: 3rem;
    color: #cd853f;
    margin-bottom: 1rem;
}

.cert-item p {
    color: #b8860b;
    font-weight: 600;
}

.community {
    padding: 5rem 0;
}

.community-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}

.community-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.activity-item h4 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-item i {
    color: #cd853f;
    margin-right: 0.5rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-intro {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.2rem;
}

.method-info h3 {
    color: #b8860b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-info p {
    margin-bottom: 0.25rem;
}

.method-info a {
    color: #cd853f;
    text-decoration: none;
    font-weight: 600;
}

.method-info a:hover {
    text-decoration: underline;
}

.method-info small {
    color: #666;
    font-style: italic;
}

.emergency-notice {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.emergency-notice h3 {
    margin-bottom: 1rem;
}

.emergency-notice i {
    margin-right: 0.5rem;
}

.contact-form-container h2 {
    color: #b8860b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Logo link styling */
.logo a {
    text-decoration: none;
}

/* Responsive adjustments for new content */
@media (max-width: 768px) {
    .story-content,
    .contact-content,
    .qualifications-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-mission {
        grid-column: span 1;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Employment Application Section */
.employment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.employment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.employment-header h2 {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.employment-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.employment-benefits {
    margin-bottom: 4rem;
}

.employment-benefits h3 {
    text-align: center;
    font-size: 2rem;
    color: #b8860b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #cd853f;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: #b8860b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
}

.employment-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.employment-form-container h3 {
    color: #b8860b;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.employment-form {
    width: 100%;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    color: #b8860b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h4 i {
    color: #cd853f;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-label span {
    color: #333;
}

.upload-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.upload-note i {
    color: #856404;
    margin-right: 0.5rem;
}

.upload-note p {
    color: #856404;
    line-height: 1.6;
}

.upload-note a {
    color: #cd853f;
    font-weight: 600;
    text-decoration: none;
}

.upload-note a:hover {
    text-decoration: underline;
}

/* Form validation styles */
.form-group input:required:invalid,
.form-group select:required:invalid,
.form-group textarea:required:invalid {
    border-color: #e9ecef;
}

.form-group input:required:valid,
.form-group select:required:valid,
.form-group textarea:required:valid {
    border-color: #28a745;
}

/* Checkbox custom styling */
.checkbox-label .checkmark {
    display: inline-block;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #cd853f;
}

/* Responsive adjustments for employment form */
@media (max-width: 768px) {
    .employment-form-container {
        padding: 2rem 1.5rem;
    }
    
    .employment-header h2 {
        font-size: 2rem;
    }
    
    .employment-benefits h3 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section h4 {
        font-size: 1.3rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .employment-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .employment-form-container {
        padding: 1.5rem 1rem;
    }
    
    .employment-header h2 {
        font-size: 1.8rem;
    }
    
    .employment-form-container h3 {
        font-size: 1.5rem;
    }
}