/* ===== MODERN CONVERSION-FOCUSED DESIGN ===== */

:root {
    /* Brand Colors - Exact from brand guide */
    --brand-teal: #51B7CD;
    --brand-lime: #73BE44;
    --brand-black: #000000;
    --brand-white: #FFFFFF;

    /* Supporting Colors */
    --sneaker-blue: #84B3DC;
    --concrete-gray: #757575;

    /* Legacy aliases for compatibility */
    --brand-cyan: #51B7CD;
    --brand-cyan-dark: #3FA3B8;
    --brand-cyan-light: #84B3DC;

    /* Text Colors */
    --text-dark: #000000;
    --text-light: #757575;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== STICKY NAVIGATION ===== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav.scrolled {
    border-bottom-color: var(--brand-lime);
    box-shadow: var(--shadow-md);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav .logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: var(--brand-teal);
}

nav .cta-btn {
    background: linear-gradient(135deg, var(--brand-lime), #5FA838);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(115, 190, 68, 0.3);
    transition: all 0.3s;
}

nav .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 190, 68, 0.4);
}

/* ===== HERO SECTION ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image-card {
    flex: 1;
    max-width: 550px;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(81, 183, 205, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-card img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(81, 183, 205, 0.4);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-subhead {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--brand-lime);
    margin-bottom: 1.5rem;
}

.hero .hero-services {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

/* ===== SECTIONS ===== */

section {
    padding: 5rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brand-teal);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== EXPERIENCES CARDS ===== */

.experiences-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.experiences-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.experience-card-small {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.experience-card-small:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-lime);
}

.experience-card-small h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-dark);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.experience-description-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 2px solid white;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-description-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
}

/* ===== TESTIMONIAL ===== */

.testimonial-section {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--sneaker-blue) 100%);
    color: white;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-image {
    flex: 1;
    max-width: 500px;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.testimonial {
    flex: 1;
    text-align: left;
    padding: 2rem;
}

.testimonial blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
}

/* ===== PORTFOLIO ===== */

.portfolio-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.portfolio-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .portfolio-videos {
        grid-template-columns: 1fr;
    }
}

/* ===== TEAM TEXT CARD ===== */

.team-text-card {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-cyan-dark));
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

.team-text-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.team-text-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== TEAM IMAGES - SHOW FULL IMAGE ===== */

.team-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    max-height: none !important;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(81, 183, 205, 0.5);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(81, 183, 205, 0.3), rgba(115, 190, 68, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* ===== FINAL CTA WITH MURAL ===== */

.final-cta {
    background: var(--bg-gray);
    padding: 5rem 1.5rem;
}

.final-cta-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.final-cta-image {
    flex: 1;
    max-width: 500px;
}

.final-cta-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.final-cta-content {
    flex: 1;
    text-align: left;
}

.final-cta-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.final-cta .cta-primary {
    font-size: 1.2rem;
    padding: 1.5rem 4rem;
}

.contact-info {
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-logo {
    margin-top: 2rem;
    opacity: 0.6;
    text-align: left;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 3rem;
}

.footer-left {
    text-align: left;
}

.footer-left .contact-info {
    margin-top: 1rem;
    text-align: left;
}

/* ===== VIDEO SPLASH ===== */

.video-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-out;
}

.video-splash.fade-out {
    opacity: 0;
    pointer-events: none;
}

.video-splash video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-intro {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(81, 183, 205, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.skip-intro:hover {
    background: var(--brand-cyan-dark);
    transform: scale(1.05);
}

/* ===== MOBILE RESPONSIVE =====*/

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    nav .logo {
        font-size: 1.25rem;
    }

    .hero {
        padding-top: 90px;
        min-height: 100vh;
        padding-bottom: 3rem;
        display: flex;
        align-items: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        text-align: center;
        font-size: 2.5rem;
    }

    .hero-image-card {
        max-width: 100%;
        width: 100%;
    }

    section {
        padding: 3rem 1rem;
    }

    .experiences-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-image {
        max-width: 100%;
    }

    .testimonial {
        text-align: center;
        padding: 1rem;
    }

    .final-cta-container {
        flex-direction: column;
    }

    .final-cta-image {
        max-width: 100%;
    }

    .final-cta-content {
        text-align: center;
    }

    .final-cta-content h2 {
        text-align: center;
    }

    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .final-cta .cta-primary {
        padding: 1.25rem 2.5rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content {
        margin-top: 45vh;
    }
}

/* Make buttons touch-friendly on mobile */
@media (max-width: 768px) {
    .cta-primary {
        min-height: 44px;
        min-width: 44px;
    }
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--brand-lime), #5FA838);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(115, 190, 68, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(115, 190, 68, 0.45);
}

/* ===== FOOTER ADDITIONS ===== */

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--brand-teal);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--concrete-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--brand-teal);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 1.5rem;
    color: var(--concrete-gray);
    font-size: 0.85rem;
    opacity: 0.8;
}