
/* ========================================
   ABOUT PAGE PREMIUM STYLES
   ========================================
*/

:root {
    --about-primary: #412ca5;
    --about-secondary: #10b981; /* Emerald green for "Trust/Growth" */
    --about-bg: #f8fafc;
    --about-text-dark: #1e293b;
    --about-text-light: #64748b;
    --about-gradient: linear-gradient(135deg, #412ca5 0%, #7c3aed 100%);
}

/* --- Hero Section --- */
.about-hero-section {
    position: relative;
    padding: 10rem 0 8rem;
    background: url('../images/skizo-abt.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Dark blue-gray overlay */
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* --- Stats Strip (Floating) --- */
.stats-section {
    position: relative;
    margin-top: -4rem;
    z-index: 10;
    padding-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background-color: #f8fafc;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--about-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Story Section (Magazine Style) --- */
.story-section {
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

/* Abstract blob shape behind image */
.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #F0EDF9;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    transform: scale(1.1) rotate(-5deg);
}

.story-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: scale(1.02);
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--about-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--about-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-box {
    border-left: 4px solid var(--about-primary);
    padding-left: 1.5rem;
    margin-top: 2rem;
    font-style: italic;
    color: var(--about-text-dark);
    font-weight: 600;
    font-size: 1.2rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

/* --- Engineering Section (Dark Theme) --- */
.engineering-section {
    padding: 8rem 0;
    background-color: var(--about-text-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.engineering-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(65, 44, 165, 0.15), transparent 70%);
    transform: rotate(30deg);
}

.eng-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eng-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eng-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.eng-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.eng-card:hover {
    transform: translateY(-5px);
    border-color: rgba(65, 44, 165, 0.5);
}

.eng-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: #a78bfa; /* Lighter Purple */
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.eng-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.eng-desc {
    font-size: 0.9rem;
    color: #94a3b8;
}


/* --- NEW: Built for Extremes (Climate) Section --- */
.climate-section {
    padding: 8rem 0;
    background-color: #f8fafc;
    position: relative;
}

.climate-header {
    text-align: center;
    margin-bottom: 4rem;
}

.climate-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--about-text-dark);
    margin-bottom: 1rem;
}

.climate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.climate-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid #f1f5f9;
    text-align: center;
    overflow: hidden;
}

.climate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(65, 44, 165, 0.15);
    border-color: rgba(65, 44, 165, 0.2);
}

.climate-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #F0EDF9;
    color: var(--about-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.climate-card:hover .climate-icon-wrapper {
    background: var(--about-primary);
    color: #ffffff;
    transform: rotateY(180deg);
}

.climate-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--about-text-dark);
    margin-bottom: 0.75rem;
}

.climate-card p {
    font-size: 1rem;
    color: var(--about-text-light);
    line-height: 1.6;
}


/* --- Values Section (Why Choose Us) --- */
.values-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid transparent;
    text-align: left;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -12px rgba(65, 44, 165, 0.15);
    border-color: rgba(65, 44, 165, 0.1);
    background: #ffffff;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(65, 44, 165, 0.05);
    color: var(--about-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--about-primary);
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--about-text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--about-text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- Updated Mission & Vision Section --- */
.mission-section {
    background: var(--about-primary);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vision-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vision-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.vision-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.vision-text span {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .story-grid, .eng-grid, .climate-grid, .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .story-image-wrapper {
        order: -1; /* Image on top on mobile */
    }
    .about-hero-title {
        font-size: 2.5rem;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
    .stats-section {
        margin-top: 0; /* Remove overlap on mobile */
        padding-top: 0;
    }
    .about-hero-section {
        padding: 6rem 0;
    }
}
