/* Import Rethink Sans Font */
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F1EB;
    --beige: #E8E3DB;
    --dark-beige: #D4CFC7;
    --navy: #1B4B7F;
    --dark-navy: #0F2C4F;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #6B6B6B;
    --accent: #2A6BAC;
    --border: #E0DDD8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rethink Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 0;
    margin: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: url('images/hero-image.jpg') center bottom/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-brand {
    position: absolute;
    top: 2rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.hero-brand-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-brand-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-nav {
    position: absolute;
    top: 2rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.hero-nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem;
    max-width: 1200px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-arrow:hover {
    transform: translateX(-50%) translateY(-5px);
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 1.5rem;
}

.stats .container {
    background: var(--cream);
    padding: 4rem 3rem;
    border-radius: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Philosophy Section */
.philosophy {
    background: var(--white);
    padding: 1.5rem;
    margin-top: 4rem;
}

.philosophy .container {
    background: var(--navy);
    padding: 6rem 4rem;
    border-radius: 24px;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-header .section-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.definition {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.philosophy-lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--white);
}

.philosophy-statement {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.pillar {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.pillar-num {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.pillar h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.pillar p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
}

/* Services Section */
.services {
    background: var(--white);
    padding: 1.5rem;
}

.services .container {
    background: var(--cream);
    padding: 6rem 4rem;
    border-radius: 24px;
}

.services .section-title {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--beige);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--dark-beige);
    transform: translateY(-5px);
}

.service-number {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--navy);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.engagement-info {
    margin-top: 6rem;
    text-align: center;
}

.engagement-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.engagement-item {
    background: var(--beige);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Expertise Section */
.expertise {
    background: var(--white);
    padding: 1.5rem;
}

.expertise .container {
    background: var(--navy);
    padding: 6rem 4rem;
    border-radius: 24px;
}

.expertise-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.target-box {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.target-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.target-highlight {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.expertise-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.company-type-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.company-type-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.company-type-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.partnerships {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.partnerships-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--white);
}

/* Transformations Section */
.transformations {
    background: var(--white);
    padding: 1.5rem;
}

.transformations .container {
    background: var(--cream);
    padding: 6rem 4rem;
    border-radius: 24px;
}

.transformations .section-title {
    text-align: center;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.transformation-card {
    background: var(--navy);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.transformation-card.featured {
    background: var(--navy);
    color: var(--white);
}

.transformation-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.transformation-type {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.transformation-details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 2rem;
}

.transformation-results h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.transformation-card.featured .transformation-results h4 {
    color: var(--white);
}

.transformation-results ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.transformation-results li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.transformation-card.featured .transformation-results li {
    color: rgba(255, 255, 255, 0.9);
}

.transformation-results li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 700;
}

.transformation-card.featured .transformation-results li::before {
    color: rgba(255, 255, 255, 0.7);
}

.transformation-exit {
    font-size: 0.95rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.transformation-logo {
    margin-bottom: 2rem;
}

.transformation-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: var(--white);
    border-radius: 12px;
    padding: 0.5rem;
    border: 2px solid var(--navy);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
}

.transformation-card.featured .logo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.transformation-info {
    margin-top: 2rem;
}

/* Our Team Section */
.team {
    background: var(--white);
    padding: 1.5rem;
}

.team .container {
    background: var(--cream);
    padding: 6rem 4rem;
    border-radius: 24px;
}

.team .section-title {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 3rem;
    align-items: start;
}

.team-member-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    border: 3px solid var(--navy);
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.team-member-title {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-member-bio {
    margin-bottom: 1.5rem;
}

.team-member-bio p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.team-member-credentials {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.team-member-credentials p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.team-member-links {
    display: flex;
    gap: 1rem;
}

.team-member-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: #0077B5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-member-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
}

.team-member-email {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: var(--beige);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-member-email:hover {
    background: var(--dark-beige);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 1.5rem;
}

.contact .container {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

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

.contact-left {
    position: relative;
    z-index: 2;
}

.contact-logo {
    position: absolute;
    width: 1700px;
    height: auto;
    top: 55%;
    left: 35%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.contact-left h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.credentials {
    margin-bottom: 2rem;
}

.credentials p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.email-link {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
    color: var(--charcoal);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-image-container {
        height: 100vh;
        min-height: 500px;
    }

    .hero-brand {
        top: 1.5rem;
        left: 2rem;
    }

    .hero-brand-logo {
        height: 60px;
    }

    .hero-brand-text {
        font-size: 1.8rem;
    }

    .hero-nav {
        top: 1.5rem;
        right: 2rem;
    }

    .hero-nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-scroll-arrow {
        bottom: 2rem;
    }

    .hero-scroll-arrow svg {
        width: 35px;
        height: 35px;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats .container,
    .philosophy .container,
    .services .container,
    .expertise .container,
    .transformations .container,
    .team .container,
    .contact .container {
        padding: 4rem 2rem;
        border-radius: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expertise-right {
        grid-template-columns: 1fr;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
    }

    .team-member-card {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .team-member-photo {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-image-container {
        height: 100vh;
        min-height: 450px;
    }

    .hero-brand {
        top: 1rem;
        left: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .hero-brand-logo {
        height: 50px;
    }

    .hero-brand-text {
        font-size: 1rem;
    }

    .hero-nav {
        top: 1rem;
        right: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-scroll-arrow {
        bottom: 1.5rem;
    }

    .hero-scroll-arrow svg {
        width: 30px;
        height: 30px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats,
    .philosophy,
    .services,
    .expertise,
    .transformations,
    .contact {
        padding: 1.5rem;
    }

    .stats .container,
    .philosophy .container,
    .services .container,
    .expertise .container,
    .transformations .container,
    .contact .container {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}

/* ===== SCROLL ANIMATIONS ===== */

/* Hero animations on load */
.hero-brand,
.hero-nav,
.hero-content,
.hero-scroll-arrow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-brand.hero-animate-in,
.hero-nav.hero-animate-in,
.hero-content.hero-animate-in,
.hero-scroll-arrow.hero-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section fade-in animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Card animations with stagger */
.fade-in-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Text reveal animations */
.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Image reveal animation */
.image-reveal-wrapper {
    overflow: hidden;
    position: relative;
}

.image-reveal {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-reveal.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Form field focus animation */
.form-group {
    transition: transform 0.3s ease;
}

.form-group.form-field-focused {
    transform: translateY(-2px);
}

.form-group.form-field-focused label {
    color: var(--white);
    font-weight: 600;
}

/* Smooth transitions for all interactive elements */
a, button, .btn-primary, .btn-secondary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-brand,
    .hero-nav,
    .hero-content,
    .hero-scroll-arrow {
        opacity: 1;
        transform: none;
    }
}
