/* OUR STORY PAGE STYLES */

:root {
    --primary-color: #000;
    --accent-color: #00a86b;
    --text-light: #666;
    --text-dark: #222;
    --bg-light: #f9f9f9;
    --bg-white: #fff;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section{
    position:relative;
    height:70vh;
    width:100%;
    overflow:hidden;
}

/* background image */

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 6s ease;
}

/* zoom hover */

.hero-section:hover .hero-bg{
    transform:scale(1.08);
}

/* overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

/* big background word */

.hero-big-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:180px;
    font-weight:800;
    letter-spacing:10px;
    color:rgba(255,255,255,0.06);
    white-space:nowrap;
    pointer-events:none;
}

/* content */

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-title{
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text{
    max-width:650px;
    margin-bottom:30px;
    font-size:18px;
}

/* button */

.hero-btn{
    border:1px solid #fff;
    padding:14px 32px;
    text-decoration:none;
    color:#fff;
    letter-spacing:2px;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
    color:#000;
}


/* ============= STORY SECTIONS ============= */
.story-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.story-section-alt {
    background: var(--bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid-image-first {
    grid-template-columns: 1fr 1fr;
}

.story-grid-image-first .story-image {
    order: -1;
}

.story-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ============= VALUES SECTION ============= */
.story-values {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.story-values .section-title {
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ============= CITIES TIMELINE ============= */
.cities-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.city-item {
    text-align: center;
    padding: 2rem 1rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 2rem;
    margin-left: 1rem;
}

.city-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.city-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============= CTA SECTION ============= */
.story-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #1a1a1a);
    color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.story-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
}

/* ============= IMPACT SECTION ============= */
.story-impact {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.impact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.impact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.impact-link:hover {
    transform: translateX(5px);
}

/* ============= NEWSLETTER SECTION ============= */
.story-newsletter {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.story-newsletter h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.newsletter-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============= SECTION TITLE ============= */
/*.section-title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: var(--primary-color);*/
/*    margin-bottom: 2rem;*/
/*}*/

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 768px) {
    .hero-section {
        min-height: 78vh;
        height: auto;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-big-text {
        font-size: 72px;
        letter-spacing: 4px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8.5vw, 3rem);
        line-height: 1;
        letter-spacing: -0.04em;
        max-width: 100%;
        margin-bottom: 16px;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero-text {
        font-size: 0.95rem;
        max-width: 19rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-btn {
        display: inline-block;
        width: min(100%, 220px);
        padding: 14px 20px;
    }

    .story-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .story-hero-content {
        padding-right: 0;
    }

    .story-hero-title {
        font-size: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image img,
    .story-hero-image img {
        height: 300px;
    }

    .story-section {
        padding: 2.5rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 1.5rem;
    }

    .cities-timeline {
        grid-template-columns: 1fr;
    }

    .city-item {
        border-left: none;
        border-bottom: 3px solid var(--accent-color);
        padding-left: 1rem;
        padding-bottom: 1rem;
        margin-left: 0;
    }

    .story-cta-section {
        padding: 3rem 1rem;
    }

    .story-cta-section h2 {
        font-size: 1.8rem;
    }

    .story-cta-section p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .story-newsletter h3 {
        font-size: 1.2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 72vh;
    }

    .hero-big-text {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        max-width: 12ch;
    }

    .hero-text {
        max-width: 17rem;
        font-size: 0.9rem;
    }

    .story-hero-title {
        font-size: 1.5rem;
    }

    .story-hero-subtitle {
        font-size: 1rem;
    }

    .story-text h2 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-cta-section h2 {
        font-size: 1.3rem;
    }
}

/* ============================================
   CAREERS SECTION
   ============================================ */

.section-careers{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
}

/* background image */

.careers-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 6s ease;
}

/* zoom effect */

.section-careers:hover .careers-bg{
    transform:scale(1.08);
}

/* overlay */

.careers-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

/* big background word */

.careers-big-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:160px;
    font-weight:800;
    letter-spacing:10px;
    color:rgba(255,255,255,0.06);
    pointer-events:none;
    white-space:nowrap;
}

/* content */

.careers-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff !important;
    padding:20px;
}

.section-badge{
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:15px;
}

.section-title{
    font-size:48px;
    max-width:750px;
    font-weight:600;
}

/* button */

.careers-btn{
    border:1px solid #fff;
    padding:14px 34px;
    text-decoration:none;
    color:#fff;
    letter-spacing:2px;
    transition:.3s;
}

.careers-btn:hover{
    background:#fff;
    color:#000;
}

