/**
 * About Us Page Styles
 */

/* General About Page Styles */
.about-page {
    background: #fff;
}

/* ========================================
   1. HERO SECTION
   ======================================== */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5B00 0%, #e54f00 100%);
    background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 91, 0, 0.85) 0%, rgba(229, 79, 0, 0.9) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   2. BRAND STORY SECTION
   ======================================== */
.brand-story-section {
    padding: 100px 0;
    background: #fff;
}

.brand-story-section .container {
    max-width: 900px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   3. VISION & MISSION SECTION
   ======================================== */
.vision-mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-box,
.mission-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF5B00 0%, #e54f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 2rem;
    color: #fff;
}

.vm-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.vm-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #555;
}

.mission-list li:last-child {
    margin-bottom: 0;
}

.mission-list li i {
    font-size: 1.5rem;
    color: #FF5B00;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   4. DIFFERENTIATORS SECTION
   ======================================== */
.differentiators-section {
    padding: 100px 0;
    background: #fff;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.diff-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.diff-card:hover {
    border-color: #FF5B00;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 91, 0, 0.15);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.diff-card:hover .diff-icon {
    background: linear-gradient(135deg, #FF5B00 0%, #e54f00 100%);
}

.diff-icon i {
    font-size: 2.25rem;
    color: #FF5B00;
    transition: color 0.3s ease;
}

.diff-card:hover .diff-icon i {
    color: #fff;
}

.diff-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.diff-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
}

/* ========================================
   5. SPACES GALLERY SECTION
   ======================================== */
.spaces-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.spaces-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   6. TRUST & COMMITMENT SECTION
   ======================================== */
.trust-commitment-section {
    padding: 100px 0;
    background: #fff;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.commitment-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    border-color: #FF5B00;
    box-shadow: 0 8px 30px rgba(255, 91, 0, 0.12);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.commitment-icon i {
    font-size: 2rem;
    color: #FF5B00;
}

.commitment-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.commitment-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* ========================================
   7. CALL TO ACTION SECTION
   ======================================== */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF5B00 0%, #e54f00 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background: #fff;
    color: #FF5B00;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #FF5B00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 400px;
        padding: 80px 20px;
    }

    .brand-story-section,
    .vision-mission-section,
    .differentiators-section,
    .spaces-gallery-section,
    .trust-commitment-section,
    .about-cta-section {
        padding: 80px 0;
    }

    .vision-mission-grid {
        gap: 30px;
    }

    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .spaces-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        min-height: 350px;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .brand-story-section,
    .vision-mission-section,
    .differentiators-section,
    .spaces-gallery-section,
    .trust-commitment-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vision-box,
    .mission-box {
        padding: 30px;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diff-card {
        padding: 24px;
    }

    .spaces-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-card {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .story-content p {
        text-align: left;
        font-size: 1.0625rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .about-hero {
        padding: 50px 16px;
    }

    .section-title {
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .vm-icon,
    .commitment-icon {
        width: 60px;
        height: 60px;
    }

    .vm-icon i,
    .commitment-icon i {
        font-size: 1.75rem;
    }

    .diff-icon {
        width: 70px;
        height: 70px;
    }

    .diff-icon i {
        font-size: 2rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .about-hero {
        background-attachment: scroll;
    }

    .vision-box,
    .mission-box,
    .diff-card,
    .gallery-item,
    .gallery-item img,
    .gallery-overlay,
    .commitment-card,
    .btn {
        transition: none;
    }

    .vision-box:hover,
    .mission-box:hover,
    .diff-card:hover,
    .gallery-item:hover,
    .gallery-item:hover img,
    .btn:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .about-hero {
        background-attachment: scroll;
        min-height: 300px;
    }

    .about-cta-section {
        display: none;
    }

    .vision-box,
    .mission-box,
    .diff-card,
    .commitment-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}