/* ABOUT US PAGE STYLES */

/* HERO SECTION */
.about-hero {
    position: relative;
    padding: 60px 0 40px;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(17,17,17,0.9) 60%, rgba(17,17,17,0.4) 100%), url('images/brands/hero.webp');
    background-size: cover;
    background-position: right center;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 650px;
}

.about-breadcrumb {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}
.about-breadcrumb a { color: white; }

.about-hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.about-hero h1 span {
    color: var(--primary);
}

.about-hero h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

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

.about-hero-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-hero-stat-card i {
    font-size: 32px;
    color: var(--primary);
}

.about-hero-stat-text h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
    color: white;
}

.about-hero-stat-text p {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

/* WHO WE ARE */
.who-we-are {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.gear-watermark {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 600px;
    color: rgba(0,0,0,0.02);
    z-index: 1;
}

.who-we-are .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px;
    gap: 15px;
}

.collage-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.collage-img.large {
    grid-column: span 2;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collage-img:hover img {
    transform: scale(1.05);
}

.who-text-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.who-text-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.check-list {
    margin-bottom: 35px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.check-list li i {
    color: var(--primary);
    font-size: 16px;
}

/* EXPERIENCE STRIP */
.exp-strip-wrapper {
    margin: -40px 0 40px;
    position: relative;
    z-index: 10;
    padding: 0 30px;
}

.exp-strip {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.exp-item i {
    font-size: 32px;
    color: var(--primary);
}

.exp-item-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}

.exp-item-text p {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
}

/* COMPANY JOURNEY */
.journey-section {
    padding: 50px 0;
    background: white;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeline {
    margin-top: 40px;
    position: relative;
    border-left: 2px solid #eee;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.2);
}

.timeline-item h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--text-light);
}

.journey-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.journey-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.journey-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), #d94508);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255,90,0,0.3);
}

.journey-badge h3 {
    font-size: 32px;
    margin-bottom: 5px;
    line-height: 1;
}

.journey-badge p {
    font-size: 12px;
    font-weight: 600;
}

/* WHY CHOOSE US (ABOUT) */
.about-why-us {
    padding: 60px 0;
    background: linear-gradient(rgba(17,17,17,0.9), rgba(17,17,17,0.95)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    color: white;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.about-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.about-why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    border-color: rgba(255,90,0,0.4);
    box-shadow: 0 10px 30px rgba(255,90,0,0.15);
}

.about-why-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-why-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.about-why-card p {
    font-size: 12px;
    color: #bbb;
    line-height: 1.5;
}

/* INDUSTRIES WE SERVE */
.about-industries {
    padding: 50px 0;
    background: white;
}

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

.about-ind-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 150px;
}

.about-ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-ind-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    transition: var(--transition);
}

.about-ind-card:hover img {
    transform: scale(1.1);
}

.about-ind-card:hover::after {
    background: rgba(255,90,0,0.4);
}

.about-ind-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-ind-content i {
    font-size: 20px;
    color: var(--primary);
}

.about-ind-card:hover .about-ind-content i {
    color: white;
}

.about-ind-content h4 {
    font-size: 14px;
    font-weight: 700;
}

/* GLOBAL BRANDS */
.about-brands {
    padding: 40px 0;
    background: var(--bg-light);
}

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

.about-brand-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.about-brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.more-brands-card {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.more-brands-card:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 1200px) {
    .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-why-grid, .about-ind-grid { grid-template-columns: repeat(3, 1fr); }
    .about-brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .who-we-are .container, .journey-grid { grid-template-columns: 1fr; }
    .exp-strip { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 42px; }
    .collage-grid { grid-template-rows: auto auto; }
    .about-why-grid, .about-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .about-brands-grid { grid-template-columns: repeat(2, 1fr); }
}
