/* FASA Website Styles */

:root {
    --fasa-primary: #8B4513;
    --fasa-primary-light: #A0522D;
    --fasa-primary-dark: #654321;
    --fasa-accent: #FF8C00;
    --fasa-accent-light: #FFA500;
    --fasa-bg: #FFFFFF;
    --fasa-bg-alt: #FAFAFA;
    --fasa-text: #1a1a1a;
    --fasa-text-secondary: #4a4a4a;
    --fasa-shadow: rgba(0, 0, 0, 0.08);
    --fasa-shadow-hover: rgba(139, 69, 19, 0.15);
    --fasa-gradient: linear-gradient(135deg, #FF8C00 0%, #FF7A00 50%, #8B4513 100%);
    --fasa-gradient-subtle: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

.fasa-content-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: visible;
}

body.fasa-body,
body.body.fasa-body {
    background-color: var(--fasa-bg);
    color: var(--fasa-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Top orange line */
.fasa-top-line {
    width: 100%;
    height: 4px;
    background: var(--fasa-gradient);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
    transition: opacity 0.5s ease;
}

/* Navigation */
.fasa-nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 0;
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fasa-nav.scrolled {
    padding: 20px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fasa-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.fasa-logo-nav {
    font-size: 24px;
    font-weight: 700;
    color: var(--fasa-accent);
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

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

.fasa-logo-nav img {
    max-height: 65px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.2));
}

.fasa-logo-nav:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 12px rgba(255, 140, 0, 0.3));
}

.fasa-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.fasa-menu a {
    color: var(--fasa-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.fasa-menu a:hover,
.fasa-menu a.active {
    color: var(--fasa-accent);
}

.fasa-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fasa-accent), var(--fasa-primary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.fasa-menu a:hover::after,
.fasa-menu a.active::after {
    width: 100%;
}

.fasa-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fasa-text);
    font-size: 24px;
    cursor: pointer;
}

/* Main Content */
.fasa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 80px;
    min-height: calc(100vh - 200px);
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fasa-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.fasa-page-title {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
}

.fasa-page-subtitle {
    color: var(--fasa-text-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

/* Sections */
.fasa-section {
    margin-bottom: 60px;
}

.fasa-section-title {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}

.fasa-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--fasa-gradient);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.fasa-section-content {
    color: var(--fasa-text-secondary);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.fasa-section-content p {
    color: var(--fasa-text-secondary);
    margin-bottom: 20px;
}

/* Section Image */
.fasa-section-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 40px;
    width: 100%;
}

.fasa-landscape-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(139, 69, 19, 0.1);
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
}

.fasa-landscape-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(139, 69, 19, 0.15);
}

/* Values Grid */
.fasa-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.fasa-value-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.fasa-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--fasa-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fasa-value-card:hover::before {
    transform: scaleX(1);
}

.fasa-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.15), 0 4px 16px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.fasa-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fasa-gradient);
    border-radius: 50%;
    color: #ffffff;
    font-size: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25);
    position: relative;
    z-index: 1;
}

.fasa-value-card:hover .fasa-value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.fasa-value-icon i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fasa-value-card:hover .fasa-value-icon i {
    transform: scale(1.1);
}

.fasa-value-title {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.fasa-value-description {
    color: var(--fasa-text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Indicators Grid */
.fasa-indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.fasa-indicator-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fasa-indicator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--fasa-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fasa-indicator-card:hover::before {
    transform: scaleX(1);
}

.fasa-indicator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.12), 0 4px 12px rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.25);
}

.fasa-indicator-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fasa-gradient);
    border-radius: 50%;
    color: #ffffff;
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 18px rgba(255, 140, 0, 0.2);
    position: relative;
    z-index: 1;
}

.fasa-indicator-card:hover .fasa-indicator-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.35);
}

.fasa-indicator-icon i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fasa-indicator-card:hover .fasa-indicator-icon i {
    transform: scale(1.1);
}

.fasa-indicator-title {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.fasa-indicator-description {
    color: var(--fasa-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Lists */
.fasa-list {
    list-style: none;
    padding: 0;
}

.fasa-list li {
    color: var(--fasa-text-secondary);
    font-size: 18px;
    padding: 18px 0;
    padding-left: 45px;
    position: relative;
    border-bottom: 1px solid rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
}

.fasa-list li:hover {
    padding-left: 50px;
    color: var(--fasa-primary);
}

.fasa-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--fasa-accent);
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.fasa-list li:hover::before {
    transform: translateX(5px);
}

/* Buttons */
.fasa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--fasa-gradient);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25), 0 2px 8px rgba(139, 69, 19, 0.15);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    z-index: 1;
}

.fasa-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 0;
}

.fasa-btn:hover::before {
    left: 100%;
}

.fasa-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.35), 0 4px 12px rgba(139, 69, 19, 0.2);
}

.fasa-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.fasa-btn-accent {
    background: var(--fasa-gradient);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3), 0 2px 8px rgba(255, 140, 0, 0.2);
}

.fasa-btn-accent:hover {
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.45), 0 4px 12px rgba(255, 140, 0, 0.3);
}

.fasa-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
    animation: fadeInUp 1.2s ease-out;
}

/* Cards */
.fasa-card {
    background: #ffffff;
    border: 1px solid rgba(139, 69, 19, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.fasa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--fasa-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fasa-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fasa-card:hover::before {
    transform: scaleX(1);
}

.fasa-card:hover::after {
    opacity: 1;
}

.fasa-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.12), 0 8px 24px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.fasa-card-title {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.fasa-card-content {
    color: var(--fasa-text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Card Images for Axes */
.fasa-card-image {
    width: calc(100% + 80px);
    min-height: 280px;
    height: auto;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin: -40px -40px 30px -40px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fasa-axe-image {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
    will-change: transform;
    display: block;
}

.fasa-card:hover .fasa-axe-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.fasa-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(139, 69, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.fasa-card:hover .fasa-card-image::before {
    opacity: 1;
}

.fasa-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    transition: height 0.4s ease;
}

.fasa-card:hover .fasa-card-image::after {
    height: 100px;
}

/* Form */
.fasa-form {
    max-width: 600px;
    margin: 0 auto;
}

.fasa-form-group {
    margin-bottom: 25px;
}

.fasa-form-label {
    display: block;
    color: var(--fasa-primary);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.fasa-form-input,
.fasa-form-textarea,
.fasa-form-select {
    width: 100%;
    padding: 16px 20px;
    background-color: #ffffff;
    border: 2px solid rgba(139, 69, 19, 0.15);
    border-radius: 12px;
    color: var(--fasa-text);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fasa-form-input:focus,
.fasa-form-textarea:focus,
.fasa-form-select:focus {
    outline: none;
    border-color: var(--fasa-accent);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1), 0 6px 20px rgba(255, 140, 0, 0.15), 0 2px 8px rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.fasa-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.fasa-form-error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
}

.fasa-form-success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Footer */
.fasa-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    border-top: 2px solid rgba(139, 69, 19, 0.1);
    padding: 60px 20px 40px;
    margin-top: 80px;
    position: relative;
}

.fasa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--fasa-gradient);
}

.fasa-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.fasa-footer-section h3 {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.fasa-footer-section p,
.fasa-footer-section a {
    color: var(--fasa-text-secondary);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.8;
}

.fasa-footer-section a {
    color: var(--fasa-primary);
}

.fasa-footer-section a:hover {
    color: var(--fasa-accent);
}

.fasa-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.fasa-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 50%;
    color: var(--fasa-primary);
    text-align: center;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.fasa-social-link:hover {
    background: var(--fasa-gradient);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.fasa-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    color: var(--fasa-text-secondary);
}

/* Homepage specific */
.fasa-homepage {
    background: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Hero Video Header */
.fasa-hero-video {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fasa-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.fasa-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* Hero Content Overlay */
.fasa-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
    width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fasa-hero-content.fasa-hidden-on-idle {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.fasa-hero-content.fasa-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hide/Show on mouse movement */
.fasa-hidden-on-idle {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.fasa-hidden-on-idle.fasa-visible {
    opacity: 1;
    pointer-events: auto;
}

.fasa-nav.fasa-hidden-on-idle {
    transform: translateY(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.fasa-nav.fasa-hidden-on-idle.fasa-visible {
    transform: translateY(0);
}

.fasa-top-line.fasa-hidden-on-idle {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fasa-top-line.fasa-hidden-on-idle.fasa-visible {
    opacity: 1;
}

.fasa-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.fasa-homepage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fasa-homepage::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fasa-hero {
    text-align: center;
    margin-bottom: 120px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.fasa-hero-content .fasa-hero-title {
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.fasa-hero-content .fasa-hero-subtitle {
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Video controls styling */
.fasa-video-bg::-webkit-media-controls {
    display: none !important;
}

.fasa-video-bg::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Ensure video plays smoothly */
.fasa-video-bg {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.fasa-hero-title {
    background: var(--fasa-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.1);
}

.fasa-hero-subtitle {
    color: var(--fasa-text-secondary);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 45px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid layouts */
.fasa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

/* Partners strip */
.fasa-partners-strip {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(139, 69, 19, 0.15);
    border-bottom: 1px solid rgba(139, 69, 19, 0.15);
    padding: 20px 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.fasa-partners-track {
    display: inline-flex;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    animation: fasa-partners-scroll 35s linear infinite;
}

.fasa-partner-logo {
    min-width: 200px;
    height: 100px;
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #222222;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    filter: grayscale(1);
    opacity: 0.8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fasa-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.fasa-partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    opacity: 1;
    filter: grayscale(0);
}

@keyframes fasa-partners-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .fasa-mobile-menu-toggle {
        display: block;
    }

    .fasa-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .fasa-menu.active {
        display: flex;
    }

    .fasa-page-title {
        font-size: 32px;
    }

    .fasa-hero-title {
        font-size: 36px;
    }

    .fasa-hero-video {
        height: 100vh;
        min-height: 600px;
    }

    .fasa-hero-content {
        padding: 0 15px;
    }

    .fasa-container {
        padding: 40px 15px;
    }

    .fasa-btn-group {
        flex-direction: column;
    }

    .fasa-btn {
        width: 100%;
    }

    .fasa-grid {
        grid-template-columns: 1fr !important;
    }

    .fasa-landscape-image {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .fasa-section-image {
        margin: 20px 0 30px;
    }

    .fasa-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fasa-value-card {
        padding: 30px 25px;
    }

    .fasa-value-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fasa-value-title {
        font-size: 20px;
    }

    .fasa-value-description {
        font-size: 14px;
    }

    .fasa-card-image {
        width: calc(100% + 60px);
        min-height: 220px;
        margin: -30px -30px 25px -30px;
        border-radius: 12px 12px 0 0;
    }

    .fasa-axe-image {
        min-height: 220px;
        max-height: 300px;
    }

    .fasa-card:hover .fasa-axe-image {
        transform: scale(1.03);
    }

    .fasa-indicators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fasa-indicator-card {
        padding: 25px 20px;
    }

    .fasa-indicator-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .fasa-indicator-title {
        font-size: 18px;
    }

    .fasa-indicator-description {
        font-size: 13px;
    }

    .fasa-partner-logo {
        min-width: 150px;
        height: 80px;
        padding: 10px 20px;
    }

    .fasa-partners-track {
        gap: 25px;
    }
}

/* SEO and Accessibility */
.fasa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Loading states */
.fasa-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Ripple effect */
.fasa-btn {
    position: relative;
    overflow: hidden;
}

.fasa-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--fasa-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--fasa-accent);
}

/* Selection color */
::selection {
    background: rgba(255, 140, 0, 0.3);
    color: var(--fasa-text);
}

::-moz-selection {
    background: rgba(255, 140, 0, 0.3);
    color: var(--fasa-text);
}
