/* ===========================================
   ABOUT US PAGE STYLES - RESPONSIVE
   =========================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--orange), var(--teal));
    padding: 80px 5%;
    text-align: center;
    color: var(--beige);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: floatPattern 30s linear infinite;
}

.page-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Base Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section-orange {
    background-color: var(--orange);
    color: var(--gray);
}

.section-dark {
    background-color: var(--dark);
    color: var(--light);
}

.section-teal {
    background-color: var(--teal);
    color: var(--beige);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-orange .section-title {
    color: var(--gray);
}

.section-dark .section-title {
    color: var(--light);
}

.section-teal .section-title {
    color: var(--beige);
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Who We Are Section */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

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

.lead-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
}

.content-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    padding: 30px;
}

.placeholder-content i {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    display: block;
}

.placeholder-content p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Brand Side Story Section */
.content-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    margin-top: 40px;
}

.highlight-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
}

.transformation-section {
    margin-top: 40px;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.transformation-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 10px;
    gap: 20px;
    transition: all 0.3s ease;
}

.transformation-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.transformation-from,
.transformation-to {
    text-align: center;
    flex: 1;
}

.transformation-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--orange);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.transformation-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    color: var(--light);
    font-weight: 600;
    line-height: 1.3;
}

.transformation-arrow {
    color: var(--orange);
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    padding: 0 10px;
}

/* Our Roots Section - Vision Cards */
.vision-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px 0;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--beige);
    margin-bottom: 25px;
    display: inline-block;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.vision-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--beige);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.vision-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: rgba(227, 217, 209, 0.95);
    line-height: 1.6;
    opacity: 0.95;
}

/* Approach Grid */
.approach-section {
    margin-top: 60px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.approach-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.approach-icon {
    color: var(--beige);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.approach-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    color: var(--beige);
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

.approach-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: rgba(227, 217, 209, 0.9);
    line-height: 1.5;
    opacity: 0.9;
}

/* Team Description */
.team-description {
    max-width: 1000px;
    margin: 0 auto;
}

.team-description>p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
    opacity: 0.95;
}

.strengths-section {
    margin: 60px 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.strength-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.strength-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.strength-icon {
    font-size: 2.2rem;
    color: var(--gray);
    margin-bottom: 20px;
    display: block;
}

.strength-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    color: var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.strength-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--gray);
    line-height: 1.6;
    opacity: 0.95;
}

/* Collaboration Box */
.collaboration-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.collaboration-header {
    text-align: center;
    margin-bottom: 40px;
}

.collaboration-icon {
    color: var(--gray);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.collaboration-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 2vw, 2rem);
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.2;
}

.collaboration-partners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-type {
    text-align: center;
}

.partner-icon {
    color: var(--gray);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.partner-type h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

.partner-type p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--gray);
    line-height: 1.6;
    opacity: 0.95;
}

.assurance-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--gray);
    text-align: center;
    font-style: italic;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 18px 35px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 250px;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(223, 111, 87, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: var(--beige);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 155, 127, 0.3);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .page-header {
        padding: 100px 8%;
    }

    .section {
        padding: 100px 0;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .content-text {
        text-align: left;
    }

    .vision-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .transformation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .strengths-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .collaboration-partners {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 30px;
    }

    .btn {
        min-width: 220px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .page-header {
        padding: 120px 10%;
    }

    .page-header h1 {
        font-size: clamp(3rem, 4vw, 4rem);
    }

    .page-header p {
        font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    }

    .section {
        padding: 120px 0;
    }

    .section-title {
        font-size: clamp(2.5rem, 3.8vw, 3.8rem);
    }

    .section-subtitle {
        font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    }

    .lead-text {
        font-size: clamp(1.5rem, 2vw, 2rem);
    }

    .content-text p {
        font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    }

    .highlight-text {
        font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    }

    .transformation-text {
        font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    }

    .vision-card h3 {
        font-size: clamp(1.7rem, 2.2vw, 2.2rem);
    }

    .vision-card p {
        font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    }

    .approach-item h4 {
        font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    }

    .approach-item p {
        font-size: clamp(1rem, 1.1vw, 1.1rem);
    }

    .team-description>p {
        font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    }

    .strength-item h4 {
        font-size: clamp(1.4rem, 1.7vw, 1.7rem);
    }

    .strength-item p {
        font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    }

    .collaboration-box h3 {
        font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    }

    .partner-type h4 {
        font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    }

    .partner-type p {
        font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .page-header {
        padding: 140px 15%;
    }

    .section {
        padding: 140px 0;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .page-header {
        padding: 60px 5%;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .lead-text {
        font-size: 1.2rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .image-placeholder {
        height: 200px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .transformation-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .transformation-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .vision-card {
        padding: 30px 20px;
    }

    .vision-card h3 {
        font-size: 1.3rem;
    }

    .vision-card p {
        font-size: 0.95rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .approach-item {
        padding: 20px 15px;
    }

    .approach-item h4 {
        font-size: 1.1rem;
    }

    .approach-item p {
        font-size: 0.9rem;
    }

    .team-description>p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .strength-item {
        padding: 25px 20px;
    }

    .strength-item h4 {
        font-size: 1.2rem;
    }

    .strength-item p {
        font-size: 0.95rem;
    }

    .collaboration-box {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .collaboration-box h3 {
        font-size: 1.3rem;
    }

    .partner-type h4 {
        font-size: 1.1rem;
    }

    .partner-type p {
        font-size: 0.95rem;
    }

    .assurance-text {
        font-size: 0.95rem;
    }

    .btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 200px;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .transformation-label {
        font-size: 0.9rem;
    }

    .transformation-text {
        font-size: 1rem;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .btn {
        min-width: 180px;
        padding: 14px 25px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .vision-card:hover,
    .approach-item:hover,
    .strength-item:hover,
    .transformation-item:hover {
        transform: none;
        box-shadow: none;
    }

    .vision-card:active,
    .approach-item:active,
    .strength-item:active,
    .transformation-item:active {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
        box-shadow: none;
    }

    .btn-primary:active,
    .btn-secondary:active {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
}

/* Print Styles */
@media print {
    .section {
        background: white !important;
        color: black !important;
        padding: 40px 0 !important;
    }

    .section-title,
    .section-subtitle,
    .vision-card h3,
    .strength-item h4,
    .partner-type h4,
    .collaboration-box h3 {
        color: black !important;
    }

    .vision-card,
    .approach-item,
    .strength-item,
    .collaboration-box,
    .content-box {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }

    .vision-card p,
    .approach-item p,
    .strength-item p,
    .partner-type p,
    .content-text p {
        color: #333 !important;
    }

    .transformation-item {
        background: #f0f0f0 !important;
        border: 1px solid #ddd !important;
    }

    .transformation-text {
        color: #333 !important;
    }

    .btn {
        border: 2px solid #333 !important;
        color: #333 !important;
        background: none !important;
    }

    .page-header {
        background: none !important;
        color: black !important;
        padding: 40px 0 !important;
    }

    .page-header::before {
        display: none;
    }
}