/* PAGE: About Us */
/* About page-specific styles */

/* ===================================================
   ABOUT HERO SECTION
   =================================================== */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive background images */
@media screen and (max-width: 1919px) {
    .about-hero-background {
        background-image: url('../../assets/images/hero-bg-1536x720.jpg');
    }
}

@media screen and (max-width: 1439px) {
    .about-hero-background {
        background-image: url('../../assets/images/hero-bg-1280x600.jpg');
    }
}

@media screen and (max-width: 767px) {
    .about-hero-background {
        background-image: url('../../assets/images/hero-bg-mobile-large.jpg');
    }
}

/* Overlay */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 37, 77, 0.75);
    z-index: 2;
}

/* Hero Container */
.about-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 80px;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Heading */
.about-hero-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 5vw, 64px);
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

/* Subtext */
.about-hero-subtext {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* CTA Button */
.about-hero-cta {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .about-hero-container {
        padding: 80px 60px;
    }
}

@media screen and (max-width: 767px) {
    .about-hero {
        min-height: 400px;
    }
    
    .about-hero-container {
        padding: 60px 24px;
    }
}

@media screen and (max-width: 375px) {
    .about-hero-container {
        padding: 50px 20px;
    }
}


/* ===================================================
   OUR STORY SECTION
   =================================================== */

.about-story {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.about-story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-content {
    animation: fadeInLeft 0.8s ease-out;
}

.about-story-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: #00254D;
    margin-bottom: 32px;
}

.about-story-text p {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #00254D;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

.about-story-image {
    animation: fadeInRight 0.8s ease-out;
}

.about-story-image figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .about-story {
        padding: 80px 0;
    }
    
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .about-story {
        padding: 60px 0;
    }
    
    .about-story-container {
        padding: 0 24px;
        gap: 40px;
    }
}

@media screen and (max-width: 375px) {
    .about-story {
        padding: 50px 0;
    }
    
    .about-story-container {
        padding: 0 20px;
        gap: 32px;
    }
}


/* ===================================================
   COMMUNITY INVOLVEMENT SECTION
   =================================================== */

.about-community {
    width: 100%;
    background-color: #F8F8F8;
    padding: 100px 0;
}

.about-community-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.about-community-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: #00254D;
    text-align: center;
    margin-bottom: 16px;
}

.about-community-intro {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #00254D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.about-community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Community Card */
.community-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.community-card__image {
    margin: 0;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.community-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Adjust positioning for community-photo-1 to show subject's face */
.community-card__image img[src*="community-photo-1"] {
    object-position: center 23%;
}

/* Adjust positioning for community-photo-2 to show subject's face */
.community-card__image img[src*="community-photo-2"] {
    object-position: center 21%;
}

.community-card:hover .community-card__image img {
    transform: scale(1.05);
}

.community-card__content {
    padding: 28px;
}

.community-card__title {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(18px, 2.5vw, 24px);
    color: #00254D;
    margin-bottom: 12px;
}

.community-card__text {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .about-community {
        padding: 80px 0;
    }
    
    .about-community-container {
        padding: 0 60px;
    }
    
    .about-community-intro {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .about-community {
        padding: 60px 0;
    }
    
    .about-community-container {
        padding: 0 24px;
    }
    
    .about-community-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .community-card__image {
        height: 240px;
    }
    
    .about-community-intro {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 375px) {
    .about-community {
        padding: 50px 0;
    }
    
    .about-community-container {
        padding: 0 20px;
    }
    
    .about-community-grid {
        gap: 24px;
    }
    
    .community-card__content {
        padding: 20px;
    }
}


/* ===================================================
   OUR VALUES SECTION
   =================================================== */

.about-values {
    width: 100%;
    background-color: #00254D;
    padding: 100px 0;
}

.about-values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.about-values-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: #3DBF2B;
    text-align: center;
    margin-bottom: 16px;
}

.about-values-intro {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #FFFFFF;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Value Item */
.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3DBF2B;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.value-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.value-item__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3DBF2B;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 24px;
}

.value-item__content {
    flex: 1;
}

.value-item__title {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(16px, 2vw, 20px);
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-item__text {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .about-values {
        padding: 80px 0;
    }
    
    .about-values-container {
        padding: 0 60px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-item {
        padding: 24px;
    }
    
    .value-item__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .about-values {
        padding: 60px 0;
    }
    
    .about-values-container {
        padding: 0 24px;
    }
    
    .value-item {
        padding: 20px;
        gap: 16px;
    }
    
    .value-item__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media screen and (max-width: 375px) {
    .about-values {
        padding: 50px 0;
    }
    
    .about-values-container {
        padding: 0 20px;
    }
    
    .value-item {
        padding: 16px;
    }
}


/* ===================================================
   CUSTOMER STORIES / TESTIMONIALS SECTION
   =================================================== */

.about-testimonials {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.about-testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.about-testimonials-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: #00254D;
    text-align: center;
    margin-bottom: 60px;
}

/* Featured Testimonials Grid */
.featured-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

/* Featured Testimonial */
.featured-testimonial {
    width: 100%;
}

.featured-testimonial__card {
    background-color: #F8F8F8;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-testimonial__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.featured-testimonial__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #3DBF2B;
}

.featured-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-testimonial__info {
    flex: 1;
}

.featured-testimonial__name {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(20px, 3vw, 28px);
    color: #00254D;
    margin-bottom: 8px;
}

.featured-testimonial__stars {
    display: flex;
    gap: 6px;
    color: #FFB800;
    font-size: 20px;
}

.featured-testimonial__text {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Additional Reviews Carousel */
.about-reviews-carousel {
    margin-top: 60px;
}

/* Responsive Styles */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .featured-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media screen and (max-width: 1023px) {
    .about-testimonials {
        padding: 80px 0;
    }
    
    .about-testimonials-container {
        padding: 0 60px;
    }
    
    .featured-testimonial__card {
        padding: 36px;
    }
}

@media screen and (max-width: 767px) {
    .about-testimonials {
        padding: 60px 0;
    }
    
    .about-testimonials-container {
        padding: 0 24px;
    }
    
    .featured-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .featured-testimonial__card {
        padding: 28px;
    }
    
    .featured-testimonial__header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .featured-testimonial__avatar {
        width: 70px;
        height: 70px;
    }
    
    .featured-testimonial__stars {
        justify-content: center;
    }
}

@media screen and (max-width: 375px) {
    .about-testimonials {
        padding: 50px 0;
    }
    
    .about-testimonials-container {
        padding: 0 20px;
    }
    
    .featured-testimonial__card {
        padding: 24px;
    }
}


/* ===================================================
   GALLERY / FIELD WORK PHOTOS SECTION
   =================================================== */

.about-gallery {
    width: 100%;
    background-color: #F8F8F8;
    padding: 100px 0;
}

.about-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.about-gallery-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: #00254D;
    text-align: center;
    margin-bottom: 16px;
}

.about-gallery-intro {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #00254D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Gallery Item */
.gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item figcaption {
    padding: 20px;
    font-family: 'Carlito', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    color: #333;
    line-height: 1.5;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 1279px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1023px) {
    .about-gallery {
        padding: 80px 0;
    }
    
    .about-gallery-container {
        padding: 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .about-gallery {
        padding: 60px 0;
    }
    
    .about-gallery-container {
        padding: 0 24px;
    }
    
    .about-gallery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media screen and (max-width: 375px) {
    .about-gallery {
        padding: 50px 0;
    }
    
    .about-gallery-container {
        padding: 0 20px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .gallery-item figcaption {
        padding: 16px;
    }
}


/* ===================================================
   WHY CHOOSE SMART CHOICE SECTION
   =================================================== */

.about-why-choose {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.about-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.about-why-choose-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: #00254D;
    text-align: center;
    margin-bottom: 60px;
}

.about-why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text {
    animation: fadeInLeft 0.8s ease-out;
}

.why-choose-intro {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #00254D;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 600;
}

.why-choose-text p {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.why-choose-checklist {
    animation: fadeInRight 0.8s ease-out;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: #00254D;
    line-height: 1.5;
}

.why-choose-list-item i {
    flex-shrink: 0;
    color: #3DBF2B;
    font-size: 24px;
    margin-top: 2px;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .about-why-choose {
        padding: 80px 0;
    }
    
    .about-why-choose-container {
        padding: 0 60px;
    }
    
    .about-why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .about-why-choose {
        padding: 60px 0;
    }
    
    .about-why-choose-container {
        padding: 0 24px;
    }
    
    .why-choose-list {
        gap: 16px;
    }
}

@media screen and (max-width: 375px) {
    .about-why-choose {
        padding: 50px 0;
    }
    
    .about-why-choose-container {
        padding: 0 20px;
    }
}


/* ===================================================
   FINAL CTA SECTION
   =================================================== */

.about-final-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Image */
.about-final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../../assets/images/blue-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive background images */
@media screen and (max-width: 1919px) {
    .about-final-cta-background {
        background-image: url('../../assets/images/blue-bg-1536x960.jpg');
    }
}

@media screen and (max-width: 1439px) {
    .about-final-cta-background {
        background-image: url('../../assets/images/blue-bg-1280x800.jpg');
    }
}

@media screen and (max-width: 767px) {
    .about-final-cta-background {
        background-image: url('../../assets/images/blue-bg-768x480.jpg');
    }
}

.about-final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.about-final-cta-heading {
    font-family: 'Bowlby One', cursive;
    font-size: clamp(32px, 5vw, 56px);
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-final-cta-text {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(16px, 2.5vw, 24px);
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.about-final-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #3DBF2B;
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Bowlby One', cursive;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-final-cta-phone:hover {
    background-color: rgba(61, 191, 43, 0.2);
    transform: translateY(-2px);
}

.about-final-cta-phone:focus-visible {
    outline: 3px solid #3DBF2B;
    outline-offset: 3px;
}

.about-final-cta-phone i {
    color: #3DBF2B;
    font-size: 24px;
}

.about-final-cta-phone-number {
    font-size: clamp(20px, 3vw, 32px);
    color: #FFFFFF;
}

/* Info Grid */
.about-final-cta-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-final-cta-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
}

.about-final-cta-info-item i {
    flex-shrink: 0;
    color: #3DBF2B;
    font-size: 28px;
    margin-top: 4px;
}

.about-final-cta-info-item div {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: #FFFFFF;
    line-height: 1.6;
}

.about-final-cta-info-item strong {
    color: #3DBF2B;
    display: block;
    margin-bottom: 4px;
}

.about-final-cta-email {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.about-final-cta-email:hover {
    color: #3DBF2B;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .about-final-cta {
        padding: 80px 0;
    }
    
    .about-final-cta-container {
        padding: 0 60px;
    }
    
    .about-final-cta-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media screen and (max-width: 767px) {
    .about-final-cta {
        padding: 60px 0;
    }
    
    .about-final-cta-container {
        padding: 0 24px;
    }
    
    .about-final-cta-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-final-cta-phone {
        padding: 16px 32px;
    }
}

@media screen and (max-width: 375px) {
    .about-final-cta {
        padding: 50px 0;
    }
    
    .about-final-cta-container {
        padding: 0 20px;
    }
    
    .about-final-cta-info-item {
        padding: 20px;
    }
}


/* ===================================================
   ANIMATIONS
   =================================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===================================================
   ULTRA SMALL MOBILE (≤320px)
   =================================================== */

@media screen and (max-width: 320px) {
    .about-hero-container {
        padding: 40px 16px;
    }
    
    .about-story-container,
    .about-community-container,
    .about-values-container,
    .about-testimonials-container,
    .about-gallery-container,
    .about-why-choose-container,
    .about-final-cta-container {
        padding: 0 16px;
    }
    
    .value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ===================================================
   EXTRA SMALL MOBILE (≤281px)
   =================================================== */

@media screen and (max-width: 281px) {
    .about-hero-container {
        padding: 30px 12px;
    }
    
    .about-story-container,
    .about-community-container,
    .about-values-container,
    .about-testimonials-container,
    .about-gallery-container,
    .about-why-choose-container,
    .about-final-cta-container {
        padding: 0 12px;
    }
    
    .community-card__content,
    .gallery-item figcaption {
        padding: 12px;
    }
    
    .featured-testimonial__card {
        padding: 16px;
    }
}
