/* PetChill About Us Page Styles */

:root {
    --primary-color: #F18F01;
    --secondary-color: #c0604a;
    --accent-color: #FF6B35;
    --light-orange: #FFF5E6;
    --dark-orange: #E57C00;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --success: #28A745;
    --warning: #FFC107;
    --gradient-primary: #F18F01;
    --gradient-secondary: #c0604a;
    --box-shadow: 0 8px 30px rgba(241, 143, 1, 0.15);
    --box-shadow-hover: 0 15px 40px rgba(241, 143, 1, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --highlight-bg: rgba(241, 143, 1, 0.06);
    --highlight-bg-light: rgba(241, 143, 1, 0.04);
}
.align-items-center h2{ font-size: 1.2rem;}
.advantages-section h3{ font-size: 1.2rem; margin-bottom: 10px;}
p{ font-size: 14px;}
section{ padding: 15px;}
.about-us {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

}

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

/* Prevent image tearing during scroll */
img {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
}

.text-left .section-title::after,
.section-title::after {
    left: 0;
    transform: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--white);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    overflow: hidden;
    padding: 0.2rem 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 4rem);
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0 1rem 0;
    }
    
    .hero-section .container {
        min-height: auto;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Removed pulse animation to reduce distracting effects */

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

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition);
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: cover;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-image img:hover {
    transform: scale(1.02) translateZ(0);
}

/* Vision & Mission Cards */
.vision-card, 
.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(241, 143, 1, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.vision-card .card-icon,
.mission-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vision-card h3,
.mission-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.vision-card p,
.mission-card p {
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto; font-size: 0.9rem;
}

/* Story Section */
.story-content {
    padding: 2rem 0;
}

.story-quote {
    background: var(--light-orange);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.story-quote blockquote {
    margin: 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-orange);
    font-weight: 600;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
}

.story-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Achievements Section */
.achievements-section {
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

.achievement-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

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

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.achievement-number {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

/* Additional specificity for achievement numbers */
.achievements-section .achievement-number,
.achievement-card .achievement-number {
    color: #ffffff !important;
}

.achievement-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Pet Welfare Support Section */
.pet-welfare-section {
    background: var(--white);
}

.welfare-content-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(241, 143, 1, 0.15);
    border: 2px solid rgba(241, 143, 1, 0.1);
    transition: var(--transition);
}

.welfare-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(241, 143, 1, 0.25);
}

.welfare-intro p.h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.welfare-programs h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.program-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(241, 143, 1, 0.05);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.program-item:hover {
    background: rgba(241, 143, 1, 0.1);
    transform: translateX(5px);
}

.program-item i {
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.program-item span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.invitation-card {
    background: linear-gradient(135deg, rgba(241, 143, 1, 0.08) 0%, rgba(192, 96, 74, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.pet-welfare-section .btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(241, 143, 1, 0.3);
    transition: all 0.3s ease;
}

.pet-welfare-section .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241, 143, 1, 0.4);
}

/* Custom WhatsApp Button */
.btn-whatsapp {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px;
}

.btn-whatsapp:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-whatsapp i {
    color: inherit !important;
}

/* Advantages Section */
.advantages-section {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #fef8f0 50%, #fff 100%);
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: url('../cat-tail.svg') no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.advantages-section .container {
    position: relative;
    z-index: 1;
}

/* Advantage Cards */
.advantage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(241, 143, 1, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.advantage-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.advantage-list li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.advantage-list li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stars {
    font-size: 1.2rem;
}

/* Location Cards */
.location-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(46, 134, 171, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.location-header {
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    color: var(--white);
}

.location-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.location-details {
    padding: 2rem;
}

.location-details .address {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.location-details .hours {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-primary);
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.contact-item i {
    font-size: 1.3rem;
    width: 30px;
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: var(--white);
}

.cta-buttons .btn {
    font-size: 1.1rem;
    padding: 0.5rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;  margin: 20px 20px 20px 0;
}

/* Override Bootstrap Primary Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: var(--box-shadow);
    padding: 5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}



/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

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

/* Extra small mobile devices */
@media (max-width: 380px) {
    .achievements-section .col-md-6.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.2rem;
    }
    
    .achievement-card {
        padding: 0.6rem 0.2rem;
        min-height: 85px;
    }
    
    .achievement-icon i {
        font-size: 1rem;
    }
    
    .achievement-number {
        font-size: 1.1rem !important;
        color: #ffffff !important;
    }
    
    .achievement-label {
        font-size: 0.6rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.faq-section .section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.accordion-item {
    border: none;
    background: var(--white);
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 1.5rem 1.8rem;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    min-height: 60px;
    line-height: 1.4;
}

.accordion-button span {
    flex: 1;
    text-align: left;
    padding-right: 1rem;
    line-height: 1.4;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F18F01'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    align-self: center;
    margin-left: 0.8rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F18F01'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.8rem 1.8rem 2rem 1.8rem;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--light-bg);
    border-top: 1px solid rgba(241, 143, 1, 0.1);
}

.accordion-body p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.accordion-body ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.accordion-body ul li strong {
    color: var(--primary-color);
}

.accordion-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.accordion-body a:hover {
    text-decoration: underline;
}

/* Universal strong highlighting - applies to all strong tags */
strong {
    background-color: var(--highlight-bg);
    padding: 0.05em 0.15em;
    border-radius: 2px;
    font-weight: 600;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Highlight important text content */
.highlight-text {
    background-color: var(--highlight-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 500;
}

.highlight-number {
    background-color: var(--highlight-bg);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
}

.highlight-feature {
    background-color: var(--highlight-bg-light);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    margin: 0.2rem 0;
    font-weight: 500;
}

/* Hero section highlights */
.hero-description strong,
.hero-subtitle strong {
    background-color: var(--highlight-bg);
    padding: 0.05em 0.15em;
    border-radius: 2px;
}

/* Story section highlights */
.story-content p strong,
.story-content .lead strong {
    background-color: var(--highlight-bg);
    padding: 0.05em 0.15em;
    border-radius: 2px;
}

/* Mission and Vision highlights */
.vision-card p strong,
.mission-card p strong {
    background-color: var(--highlight-bg);
    padding: 0.05em 0.15em;
    border-radius: 2px;
}

/* Achievement numbers with highlight - REMOVED, conflicts with main styles */

/* Advantage list highlights */
.advantage-list li strong {
    background-color: var(--highlight-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Testimonial highlights */
.testimonial-text strong {
    background-color: var(--highlight-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* FAQ highlights */
.accordion-body strong {
    background-color: var(--highlight-bg) !important;
    padding: 0.2rem 0.4rem !important;
    border-radius: 4px !important;
    color: var(--primary-color) !important;
}

/* Contact highlights */
.location-details strong,
.contact-item strong {
    background-color: var(--highlight-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 35vh !important;
        padding: 0.2rem 0 !important;
    }
    
    /* General mobile spacing optimizations */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    .mb-3 {
        margin-bottom: 0.8rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .achievement-number {
        font-size: 2rem !important;
        color: #ffffff !important;
    }
    
    /* Tablet achievement cards layout - 3 per row */
    .achievements-section .col-md-6.col-lg-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .achievement-card {
        min-height: 120px;
        padding: 1rem 0.5rem;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
    
    .achievement-number {
        font-size: 1.8rem !important;
        color: #ffffff !important;
    }
    
    .achievement-label {
        font-size: 0.9rem;
    }
    
    .story-quote blockquote {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .advantage-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .advantage-card h3 {
        font-size: 1.3rem;
    }
    
    .location-details {
        padding: 1.5rem;
    }
    
    .welfare-content-card {
        padding: 1.5rem;
    }
    
    .commitment-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .commitment-item {
        padding: 1rem 0;
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .program-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .program-item i {
        margin-bottom: 0.5rem;
        margin-right: 1rem;
    }
    
    /* Tablet image adjustments */
    .hero-image img {
        max-width: 400px;
        border-radius: 12px;
    }
    
    .commitment-image {
        margin-top: 2rem;
        text-align: center;
    }
    
    .commitment-image img {
        max-width: 380px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
        margin-bottom: 0.8rem;
        width: 100%;
        display: block;
    }
    
    /* Achievement cards mobile layout - responsive grid */
    .achievements-section .col-md-6.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.3rem;
        margin-bottom: 1rem;
    }
    
    .achievement-card {
        padding: 0.8rem 0.3rem;
        margin: 0 auto;
        text-align: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 95px;
    }
    
    .achievement-icon {
        margin-bottom: 0.3rem;
    }
    
    .achievement-icon i {
        font-size: 1.2rem;
        display: block;
    }
    
    .achievement-number {
        font-size: 1.3rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }
    
    .achievement-label {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0;
        padding: 0 0.2rem;
        word-wrap: break-word;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .location-card {
        margin-bottom: 1rem;
    }
    
    .location-header {
        padding: 1rem;
    }
    
    .location-header h4 {
        font-size: 1.1rem;
    }
    
    .location-details {
        padding: 1rem;
    }
    
    .contact-item {
        font-size: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .commitment-item h5 {
        font-size: 1.1rem;
    }
    
    .commitment-item p {
        font-size: 0.9rem;
    }
    
    /* Hero section mobile fixes */
    .hero-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .hero-section .container {
        min-height: auto;
        padding: 0;
    }
    
    .hero-section .row {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 0.5rem 0.5rem;
        order: 1;
    }
    
    .hero-image {
        order: 2;
        margin-top: 0.8rem;
        margin-bottom: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .hero-image img {
        width: 100%;
        max-width: 100vw;
        height: auto;
        border-radius: 0;
        object-fit: cover;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
        padding: 0 0.5rem;
    }
    
    /* Story section mobile fixes */
    #our-story .row {
        flex-direction: column;
    }
    
    #our-story .col-lg-6:first-child {
        order: 2;
    }
    
    #our-story .col-lg-6:last-child {
        order: 1;
    }
    
    .story-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: 0.8rem;
    }
    
    .story-image img {
        width: 100%;
        max-width: 100vw;
        height: auto;
        border-radius: 0 !important;
        object-fit: cover;
    }
    
    .story-content {
        padding: 0 1rem;
        margin-bottom: 0.8rem;
    }
    
    .story-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .story-quote blockquote p {
        font-size: 1.1rem !important;
        font-style: italic;
        margin-bottom: 1rem !important;
    }
    
    .story-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Commitment section mobile fixes */
    .commitment-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: 1rem;
    }
    
    .commitment-image img {
        width: 100%;
        max-width: 100vw;
        height: auto;
        border-radius: 0 !important;
        object-fit: cover;
    }
    
    /* Strength section (承諾) mobile fixes */
    .strength-section .row.align-items-center {
        flex-direction: column;
    }
    
    .strength-section .col-lg-6:first-child {
        order: 1;
    }
    
    .strength-section .col-lg-6:last-child {
        order: 2;
    }
    
    .strength-section .commitment-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: 0.8rem;
    }
    
    .commitment-content {
        padding: 0 1rem;
        margin-bottom: 0.8rem;
    }
    
    .commitment-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .commitment-item {
        margin-bottom: 1rem !important;
    }
    
    .commitment-item h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .commitment-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* FAQ section mobile fixes */
    .accordion-button {
        font-size: 1rem !important;
        padding: 1rem 1.2rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-height: 50px !important;
    }
    
    .accordion-button span {
        flex: 1 !important;
        text-align: left !important;
        padding-right: 0.8rem !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
    }
    
    .accordion-button::after {
        width: 1rem !important;
        height: 1rem !important;
        margin-left: 0.5rem !important;
        flex-shrink: 0 !important;
        align-self: center !important;
    }
    
    .accordion-body {
        padding: 1.2rem 1.2rem 1.5rem 1.2rem !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .accordion-body p {
        margin-bottom: 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .accordion-body ul {
        margin-bottom: 0.8rem !important;
    }
    
    .accordion-body ul li {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.3 !important;
    }
    
    .accordion-body a {
        font-size: 0.8rem !important;
        word-break: break-all !important;
    }
    
    /* Additional mobile spacing optimizations */
    .vision-card,
    .mission-card {
        padding: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Testimonial cards compact layout */
    .testimonial-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .testimonial-author {
        font-size: 0.85rem !important;
    }
    
    /* Advantage cards compact layout */
    .advantage-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .advantage-list li {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    /* Contact and location cards compact layout */
    .location-card {
        margin-bottom: 1rem !important;
    }
    
    .location-header {
        padding: 0.8rem !important;
    }
    
    .location-details {
        padding: 0.8rem !important;
    }
    
    .contact-item {
        margin-bottom: 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Welfare section mobile fixes */
    .welfare-content-card {
        padding: 1rem;
    }
    
    .welfare-programs h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .invitation-card {
        padding: 1rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .achievements-section,
    .contact-section {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        display: none;
    }
}

/* Our Commitment Section */
.strength-section {
    background-color: #f8f9fa;
}

.commitment-content {
    padding: 1rem 0;
}

.commitment-content h3 {
    font-weight: 700;
    font-size: 2rem;
}

.commitment-points {
    margin-top: 2rem;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(241, 143, 1, 0.1);
}

.commitment-item:last-child {
    border-bottom: none;
}

.commitment-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.commitment-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.commitment-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.commitment-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commitment-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: cover;
}

.commitment-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: transparent;
    padding: 0.5rem 0 !important;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary-color);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}
