/* ===================================
   Truth Arc Media - Premium Portfolio
   Color Scheme:
   - Emerald Green: #10b981, #059669
   - Cream: #faf8f5, #f5f3ef
   - Charcoal/Black: #1a1a1a, #0a0a0a
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #34d399;
    --cream: #faf8f5;
    --cream-dark: #f5f3ef;
    --charcoal: #1a1a1a;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #d1d5db;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --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);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: var(--charcoal);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-image {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--charcoal);
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--emerald);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -0.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--emerald);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--emerald-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(26, 26, 26, 0.75) 50%, 
        rgba(16, 185, 129, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vision-card {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vision-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.vision-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.vision-card p {
    color: var(--gray);
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    z-index: 1;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 16px; }
}

/* === ABOUT SECTION === */
.about-section {
    padding: 6rem 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(10, 10, 10, 0.2) 100%
    );
}

.about-content {
    max-width: 600px;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.why-choose {
    margin-top: 3rem;
}

.why-choose h3 {
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--emerald);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-list strong {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefits-list span {
    display: block;
    color: var(--gray);
    font-size: 0.95rem;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.8) 0%, 
        rgba(10, 10, 10, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
}

.service-card p {
    color: var(--gray);
    text-align: center;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

/* === PORTFOLIO SECTION === */
/* === MOSAIC WORK PAGE - ONE FULL-WIDTH VIDEO + VARIED CARDS === */
/* === BALANCED 3-COLUMN PORTFOLIO PAGE === */
.balanced-work-page {
    background: #0B0B0B;
    width: 100%;
}

/* === SECTION 1 — HERO (65vh, CENTERED, SYMMETRIC) === */
.balanced-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, rgba(40, 40, 40, 0.35) 0%, transparent 55%), #111111;
    position: relative;
    padding: 5rem 4rem;
}

.balanced-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 217, 163, 0.05) 100%);
    pointer-events: none;
}

.balanced-hero-content {
    max-width: 60%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.balanced-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    line-height: 1;
}

.balanced-subtitle {
    font-size: 1.175rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    font-weight: 400;
}

/* === SECTION 2 — FEATURED VIDEO (FULL-WIDTH, CENTERED, LARGE VERTICAL SPACE) === */
.balanced-featured-video {
    padding: 11.25rem 4rem;
    background: #0B0B0B;
}

.balanced-video-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.balanced-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 50px 140px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 100px rgba(0, 217, 163, 0.14);
}

.balanced-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.balanced-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3rem 3.5rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 25%,
        rgba(0, 0, 0, 0.92) 100%
    );
}

.overlay-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00D9A3;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 163, 0.16);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.overlay-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.overlay-client {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1.25rem;
}

.overlay-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.77);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 600px;
}

.overlay-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #00D9A3;
    color: #0B0B0B;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-cta:hover {
    background: #00b087;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 217, 163, 0.4);
}

/* === SECTION 3 — BALANCED 3-COLUMN MOSAIC GRID === */
.balanced-mosaic {
    padding: 11.25rem 4rem 10rem;
    background: #0B0B0B;
}

.balanced-grid-container {
    max-width: 1320px;
    margin: 0 auto;
}

.balanced-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
    gap: 3rem;
}

/* === BALANCED CARD BASE STYLES === */
.balanced-card {
    background: #111111;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.balanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 56px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 217, 163, 0.25),
        0 0 40px rgba(0, 217, 163, 0.12);
}

/* === LAYOUT STRATEGY: BALANCED LEFT–CENTER–RIGHT === */

/* LEFT COLUMN: Tall Card (Event Highlight) */
.tall-left {
    grid-column: 1 / span 4;
    grid-row: 1 / span 3;
}

/* CENTER COLUMN: Wide (Product Launch) + 2 Medium Cards Side-by-Side */
.wide-center {
    grid-column: 5 / span 5;
    grid-row: 1 / span 2;
}

.compact-center {
    grid-column: 5 / span 2;
    grid-row: 3 / span 1;
}

.medium-center {
    grid-column: 7 / span 3;
    grid-row: 3 / span 1;
}

/* RIGHT COLUMN: Large Vertical Card (Social Media) */
.large-right {
    grid-column: 10 / span 3;
    grid-row: 1 / span 3;
}

.large-right.accent-border {
    border: 2px solid #00D9A3;
}

/* === CARD VISUAL ELEMENTS === */
.balanced-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.balanced-card:hover .balanced-card-image {
    transform: scale(1.06);
}

.balanced-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.96) 100%
    );
    z-index: 2;
}

.balanced-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00D9A3;
    margin-bottom: 0.875rem;
}

.balanced-heading {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

/* Larger text for featured cards */
.large-right .balanced-heading,
.tall-left .balanced-heading {
    font-size: 1.875rem;
}

.balanced-client {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0.5rem;
}

.balanced-result {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 1rem;
    line-height: 1.5;
}

.balanced-metric {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.balanced-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: #00D9A3;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid #00D9A3;
    border-radius: 999px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.balanced-cta:hover {
    background: #00D9A3;
    color: #0B0B0B;
    transform: translateY(-2px);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .balanced-title {
        font-size: 5rem;
    }
    
    .balanced-featured-video {
        padding: 9rem 3rem;
    }
    
    .overlay-title {
        font-size: 2.75rem;
    }
    
    .balanced-mosaic {
        padding: 9rem 3rem 8rem;
    }
    
    .balanced-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-auto-rows: 200px;
        gap: 2.5rem;
    }
    
    /* Tablet: 2-column layout preserving weight */
    .tall-left {
        grid-column: 1 / span 4;
        grid-row: 1 / span 3;
    }
    
    .wide-center {
        grid-column: 5 / span 4;
        grid-row: 1 / span 2;
    }
    
    .compact-center {
        grid-column: 1 / span 3;
        grid-row: 4 / span 1;
    }
    
    .medium-center {
        grid-column: 4 / span 3;
        grid-row: 4 / span 1;
    }
    
    .large-right {
        grid-column: 7 / span 2;
        grid-row: 4 / span 2;
    }
}

@media (max-width: 768px) {
    .balanced-hero {
        min-height: 60vh;
        padding: 4rem 2rem;
    }
    
    .balanced-hero-content {
        max-width: 90%;
    }
    
    .balanced-title {
        font-size: 3.5rem;
    }
    
    .balanced-subtitle {
        font-size: 1.05rem;
    }
    
    .balanced-featured-video {
        padding: 7rem 2rem;
    }
    
    .balanced-video-box {
        border-radius: 12px;
    }
    
    .balanced-video-overlay {
        padding: 2rem 2rem 2.5rem;
    }
    
    .overlay-title {
        font-size: 2.25rem;
    }
    
    .overlay-client,
    .overlay-description {
        font-size: 0.9375rem;
    }
    
    .balanced-mosaic {
        padding: 7rem 2rem 6rem;
    }
    
    .balanced-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile: Stack with varied heights */
    .tall-left,
    .wide-center,
    .compact-center,
    .medium-center,
    .large-right {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .tall-left {
        min-height: 420px;
    }
    
    .large-right {
        min-height: 440px;
    }
    
    .wide-center {
        min-height: 380px;
    }
    
    .compact-center {
        min-height: 320px;
    }
    
    .medium-center {
        min-height: 360px;
    }
    
    .balanced-heading {
        font-size: 1.5rem;
    }
    
    .large-right .balanced-heading,
    .tall-left .balanced-heading {
        font-size: 1.625rem;
    }
}

@media (max-width: 480px) {
    .balanced-title {
        font-size: 2.75rem;
    }
    
    .overlay-title {
        font-size: 2rem;
    }
}


/* === PROCESS SECTION === */
.process-section {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 2;
}

.process-image {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-md);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.process-content p {
    color: var(--gray);
    line-height: 1.8;
}

.process-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--emerald), var(--emerald-light));
    margin: -1rem 0 -1rem 38.5px;
    position: relative;
    z-index: 1;
}

/* === MEET THE CREATORS SECTION === */
.team-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a4d3e 0%, #0f2922 35%, #0a1a15 70%, #050d0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Cinematic overlay effects */
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(26, 77, 62, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(5, 13, 10, 0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Heading Area - Top Centered */
.team-header {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out;
}

.team-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.team-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* Team Member Cards - Three Columns */
.team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: start;
}

.team-member {
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.team-member:nth-child(1) {
    animation-delay: 0.2s;
}

.team-member:nth-child(2) {
    animation-delay: 0.4s;
}

.team-member:nth-child(3) {
    animation-delay: 0.6s;
}

.team-member:hover {
    transform: translateY(-15px);
}

/* Circular Portrait Images */
.member-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(16, 185, 129, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #0a1a15;
}

.member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.team-member:hover .member-photo {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(16, 185, 129, 0.3);
    transform: scale(1.08);
}

.team-member:hover .member-photo::after {
    opacity: 1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.team-member:hover .member-photo img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

/* Team Member Details */
.member-name {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.member-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.member-bio {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 300px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* Bottom Description - Centered Paragraph */
.team-bottom-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out 0.8s;
    animation-fill-mode: both;
}

.team-bottom-description p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.4px;
}

/* Floating Social Buttons - Right Side Fixed */
.floating-social {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        0 0 40px rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-float-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-float-btn:hover {
    transform: scale(1.15);
    box-shadow: 
        0 6px 30px rgba(16, 185, 129, 0.6),
        0 0 60px rgba(16, 185, 129, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #833ab4 100%);
}

.social-float-btn i {
    position: relative;
    z-index: 1;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--emerald);
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.author-info span {
    display: block;
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.author-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.author-instagram:hover {
    color: var(--emerald-dark);
}

/* === INSTAGRAM SECTION === */
.instagram-section {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.instagram-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(250, 248, 245, 0.95) 0%, 
        rgba(16, 185, 129, 0.05) 100%
    );
    z-index: 0;
}

.instagram-section .container {
    position: relative;
    z-index: 1;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instagram-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.instagram-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-lg);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-item:hover img {
    transform: scale(1.2);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.9) 0%, 
        rgba(10, 10, 10, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.instagram-cta {
    text-align: center;
}

.instagram-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(16, 185, 129, 0.6); }
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--emerald);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--emerald-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FORM ALERT MESSAGES === */
.form-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-content i {
    font-size: 1.25rem;
}

.alert-close {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.alert-close:hover {
    opacity: 1;
}

/* Loading button state */
.btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* === CTA BANNER === */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.95) 0%, 
        rgba(10, 10, 10, 0.9) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--emerald);
}

.cta-content .btn-primary:hover {
    background: var(--cream);
    color: var(--emerald-dark);
}

/* === FOOTER === */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-subtext {
    color: var(--emerald);
}

.footer-tagline {
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(250, 248, 245, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--emerald);
    padding-left: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.875rem;
}

.footer-bottom i {
    color: var(--emerald);
}

/* === FLOATING WHATSAPP === */
/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        gap: 4rem;
    }
    
    .member-photo {
        width: 200px;
        height: 200px;
    }
    
    .floating-social {
        right: 1.5rem;
    }
    
    .social-float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .process-image {
        grid-column: 1 / -1;
        height: 250px;
    }
    
    .process-connector {
        margin-left: 28.5px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 2rem;
    }
    
    .footer-logo-image {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .team-section {
        padding: 5rem 0 4rem;
    }
    
    .team-header {
        margin-bottom: 4rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 400px;
        margin: 0 auto 4rem;
    }
    
    .member-photo {
        width: 200px;
        height: 200px;
    }
    
    .team-bottom-description {
        padding: 2rem 1.5rem;
    }
    
    .team-bottom-description p {
        font-size: 1.05rem;
    }
    
    .floating-social {
        right: 1rem;
        gap: 0.75rem;
    }
    
    .social-float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
