/* ELITE / PRO Pages Styles (About & Contact) - V2 Redesign */

/* --- Typography & Utilities --- */
.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.text-gradient {
    background: linear-gradient(45deg, var(--highlight, #00d4ff), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-dark-texture {
    background-color: #05182f;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- Elite Hero Section --- */
.hero-elite {
    position: relative;
    height: 350px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-elite-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-elite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 24, 47, 0.95) 0%, rgba(5, 24, 47, 0.6) 100%);
    z-index: 2;
}

/* Diagonal Cut at bottom */
.hero-elite::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
    z-index: 3;
}

.hero-elite-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-elite-tag {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--highlight, #00d4ff);
    color: var(--highlight, #00d4ff);
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(0, 212, 255, 0.1);
}

.hero-elite-title {
    font-family: 'Teko', sans-serif;
    font-size: 6rem;
    line-height: 0.85;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-elite-title span {
    display: block;
}

/* --- About Page: Vision & Values --- */

/* Vision Cards */
.vision-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card {
    background: white;
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--highlight, #00d4ff);
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vision-icon {
    font-size: 3rem;
    color: var(--primary, #05182f);
    margin-bottom: 30px;
}

.vision-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--primary, #05182f);
    margin-bottom: 20px;
    line-height: 1;
}

/* Values Grid V2 */
.values-v2-section {
    padding: 120px 0;
    background: var(--primary, #05182f);
    position: relative;
    overflow: hidden;
}

.values-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-v2-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    position: relative;
    transition: 0.3s;
}

.value-v2-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--highlight, #00d4ff);
}

.value-v2-icon {
    font-size: 2.5rem;
    color: var(--highlight, #00d4ff);
    margin-bottom: 25px;
}

.value-v2-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-v2-desc {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* History Timeline */
.history-section {
    padding: 100px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #eee;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--highlight, #00d4ff);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #eee;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
}

.timeline-date {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: var(--primary, #05182f);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary, #05182f);
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* --- About Page: Story Section (Legacy/Updated) --- */
.story-section {
    padding: 120px 0;
    position: relative;
}

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

.story-content h2 {
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--primary, #05182f);
    margin-bottom: 30px;
}

.story-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary, #05182f);
    border-left: 4px solid var(--highlight, #00d4ff);
    padding-left: 20px;
    margin: 30px 0;
}

.story-visual {
    position: relative;
}

.story-img-main {
    width: 90%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(5, 24, 47, 0.1);
    position: relative;
    z-index: 2;
}

.story-img-backdrop {
    position: absolute;
    top: -30px;
    right: 0;
    width: 60%;
    height: 80%;
    background: var(--highlight, #00d4ff);
    z-index: 1;
    opacity: 0.1;
}

/* --- Stats Strip --- */
.stats-strip {
    background: var(--primary, #05182f);
    padding: 60px 0;
    color: white;
    margin: 60px 0;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    color: var(--highlight, #00d4ff);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- Roster / Staff Section --- */
.roster-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.roster-card {
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.roster-card:hover {
    transform: translateY(-10px);
}

.roster-img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.roster-card:hover .roster-img {
    filter: grayscale(0%);
}

.roster-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5,24,47,0.95), transparent);
    padding: 80px 20px 20px;
    color: white;
}

.roster-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--highlight, #00d4ff);
    font-weight: 700;
}

.roster-name {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    line-height: 1;
    margin: 5px 0 0;
}

/* --- Contact Elite (Dark Theme) --- */
.contact-elite-section {
    padding: 100px 0;
    background: var(--primary, #05182f);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background elements */
.contact-elite-section::before {
    content: 'CONTACT';
    position: absolute;
    top: -50px;
    right: -50px;
    font-family: 'Teko', sans-serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.02);
    font-weight: 700;
    pointer-events: none;
}

.contact-grid-elite {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-details h3 {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
}

.contact-method {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--highlight, #00d4ff);
}

.contact-method h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--highlight, #00d4ff);
}

.contact-method p {
    margin: 0;
    color: #ccc;
    font-size: 1.1rem;
}

/* Dark Form */
.form-elite {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-row-elite {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-elite { 
    margin-bottom: 0px;
}

.form-group-elite label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-elite input,
.form-group-elite select,
.form-group-elite textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.form-group-elite input:focus,
.form-group-elite select:focus,
.form-group-elite textarea:focus {
    border-color: var(--highlight, #00d4ff);
    background: rgba(0,0,0,0.4);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.btn-elite {
    background: var(--highlight, #00d4ff);
    color: var(--primary, #05182f);
    border: none;
    padding: 15px 40px;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 95% 100%, 0 100%);
}

.btn-elite:hover {
    background: white;
    transform: translateY(-2px);
}

/* Map Container */
.map-container-elite {
    height: 400px;
    width: 100%;
    filter: grayscale(100%) contrast(1.2);
    transition: 0.5s;
    margin-top: -50px; /* Overlap with diagonal section above if needed */
    z-index: 1;
}

.map-container-elite:hover {
    filter: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-elite-title {
        font-size: 3rem!important;
    }
    .story-grid, .contact-grid-elite {
        grid-template-columns: 1fr;
    }
    .vision-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
        align-self: flex-start;
    }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
    .form-row-elite {
        grid-template-columns: 1fr;
    }
    .story-img-main {
        width: 100%;
    }
}
