/* vITA Group Custom Styles */

:root {
    /* ITA Airways Official Colors */
    --ita-red: #c01126;        /* ITA Red - Primary brand color */
    --ita-blue: #0066cc;       /* ITA Blue - Secondary brand color */
    --ita-dark-blue: #003d7a;  /* ITA Dark Blue - Deep blue accent */
    --ita-light-blue: #4d9de0; /* ITA Light Blue - Light accent */
    --ita-white: #ffffff;      /* ITA White */
    --ita-gray: #6c757d;       /* ITA Gray */
    
    /* Legacy variables for compatibility */
    --vita-red: var(--ita-red);
    --vita-blue: var(--ita-blue);
    --vita-dark: #0a0a0a;
    --vita-light: #1a1a1a;
    --vita-text: var(--ita-white);
    --vita-text-secondary: rgba(255, 255, 255, 0.8);
}

/* vITA Group Brand Colors */
.btn-primary {
    background-color: var(--vita-red) !important;
    border-color: var(--vita-red) !important;
}

.btn-primary:hover {
    background-color: #e01e3a !important;
    border-color: #e01e3a !important;
}

/* Custom vITA Hero Section */
.start-screen--style-3 {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%), url('../img/vita-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* vITA Logo Styling */
.site-logo img {
    max-height: 60px;
    width: auto;
}

/* vITA Statistics Counter */
.counter .__count {
    color: var(--vita-red);
    font-weight: 800;
}

/* vITA Services Cards */
.services .__item {
    border: 2px solid transparent;
}

.services .__item:hover {
    border-color: var(--vita-red);
}

/* vITA Team Cards */
.team .__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
}

.team .__item:hover {
    border-color: var(--vita-red);
}

/* vITA Contact Section */
.contact-email {
    color: var(--vita-red);
    font-weight: 600;
}

/* Modern Footer Styling */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--ita-red);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--ita-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.social-link.discord:hover {
    background: #5865F2;
}

.social-link.vamsys:hover {
    background: var(--ita-red);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--ita-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--ita-blue);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

/* vITA Navigation - Modern Sleek Navbar */
.vita-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    width: 100%;
    height: 80px;
}

.vita-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ita-blue), transparent);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.navbar-logo img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 65px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
    will-change: transform, filter;
}

.navbar-logo:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.4));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vita-red), #ff6b6b);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover {
    color: var(--ita-light-blue);
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
    background: var(--ita-light-blue);
}

.navbar-nav .nav-link.active {
    color: var(--ita-blue);
    font-weight: 600;
}

.navbar-nav .nav-link.active::before {
    width: 100%;
    background: var(--ita-blue);
}

.navbar-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.navbar-actions .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.navbar-actions .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;
}

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

.navbar-actions .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.navbar-actions .btn-primary {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-light-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.navbar-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--ita-dark-blue), var(--ita-blue));
}

.navbar-actions .btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.navbar-actions .btn-discord:hover {
    background: linear-gradient(135deg, #4752C4, #5B6DAE);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
}

.navbar-toggle span {
    width: 32px;
    height: 4px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-toggle:hover span {
    background: var(--ita-blue);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--ita-blue);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--ita-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu.active {
        top: 100%;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        text-align: center;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .navbar-actions .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Scroll effect */
.vita-navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(192, 17, 38, 0.3);
}

/* vITA Hero Section - Modern & Readable */
.vita-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(192, 17, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 17, 38, 0.05) 0%, transparent 50%);
    animation: heroPattern 20s ease-in-out infinite;
}

@keyframes heroPattern {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ita-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--ita-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-light-blue), var(--ita-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    will-change: transform, box-shadow, background;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-light-blue));
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--ita-dark-blue), var(--ita-blue));
}

.hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-dropdown {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 100px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    backdrop-filter: blur(10px);
}

.lang-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-dropdown:focus {
    outline: none;
    background-color: var(--ita-blue);
    border-color: var(--ita-blue);
}

.lang-dropdown option {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }
}



/* ========================================
   COMPREHENSIVE PAGE STYLING FIXES
   ======================================== */

/* About Section Styling */
#about .text-center p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

#about .text-center strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ita-blue);
    display: block;
    margin-bottom: 1rem;
}

/* Services Section Styling */
#services .services__item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    height: 100%;
}

#services .services__item:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--ita-blue);
}

/* New Services Section Styling */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
}

.services-header {
    margin-bottom: 4rem;
}

.services-subtitle {
    color: var(--ita-blue);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.services-title span {
    color: var(--ita-red);
}

.services-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    border-color: var(--ita-blue);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-description {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

#services .services__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ita-blue);
    margin-bottom: 1rem;
}

#services .services__text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Fleet Section Styling */
#fleet {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#fleet .text-center p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

#fleet .text-center strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ita-blue);
    display: block;
    margin-bottom: 1rem;
}

/* Team Section Styling */
#team .team__item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    height: 100%;
}

#team .team__item:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--ita-blue);
}

#team .team__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ita-blue);
    margin-bottom: 0.5rem;
}

#team .team__position {
    font-size: 0.9rem;
    color: var(--ita-red);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#team .team__text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Join Section Styling */
#join {
    background: linear-gradient(135deg, var(--ita-blue) 0%, var(--ita-dark-blue) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

#join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/vita-background.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

#join .container {
    position: relative;
    z-index: 2;
}

#join .section-heading--white .__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

#join .section-heading--white .__title {
    color: white;
}

#join .section-heading--white p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

#join .custom-btn {
    background: var(--ita-red);
    color: white;
    border: 2px solid var(--ita-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.5rem;
}

#join .custom-btn:hover {
    background: transparent;
    color: var(--ita-red);
    border-color: var(--ita-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(192, 17, 38, 0.3);
}

#join .custom-btn--style-2 {
    background: transparent;
    color: white;
    border-color: white;
}

#join .custom-btn--style-2:hover {
    background: white;
    color: var(--ita-blue);
    border-color: white;
}

/* Why Join Section Styling */
#why-join {
    padding-top: 2rem;
}

/* Benefits Section Styling */
#benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-item:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--ita-blue);
}

.benefit-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.benefit-content h4 {
    color: var(--ita-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Contact Section Styling */
#contact {
    background: #f8f9fa;
}

#contact .text-center p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

#contact .text-center strong {
    color: var(--ita-blue);
    font-weight: 700;
}

/* Simple Footer Styling */
.vita-footer-simple {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vita-footer-simple .footer-brand {
    margin-bottom: 1rem;
}

.vita-footer-simple .footer-logo img {
    max-height: 40px;
    width: auto;
}

.vita-footer-simple .footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.vita-footer-simple .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.vita-footer-simple .footer-links a:hover {
    color: var(--ita-blue);
}

.vita-footer-simple .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.vita-footer-simple .footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

/* Mobile Responsive for Simple Footer */
@media (max-width: 768px) {
    .vita-footer-simple .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .vita-footer-simple .row {
        text-align: center;
    }
}

/* Privacy/Terms Page Styling */
.privacy-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.privacy-title {
    color: var(--ita-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-updated {
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--ita-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--ita-blue);
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.privacy-section a {
    color: var(--ita-blue);
    text-decoration: none;
}

.privacy-section a:hover {
    color: var(--ita-red);
    text-decoration: underline;
}

/* Mobile Responsive for Privacy/Terms */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* Fleet Page Styling */
.fleet-hero {
    background: linear-gradient(135deg, var(--ita-blue) 0%, var(--ita-red) 100%);
    color: white;
    padding: 12rem 0 6rem;
    text-align: center;
    margin-top: 0;
}

.fleet-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.fleet-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.aircraft-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.aircraft-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.25);
    border-color: var(--ita-blue);
}

.aircraft-category:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.category-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.aircraft-category h4 {
    color: var(--ita-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aircraft-category p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aircraft-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.aircraft-list li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aircraft-list li:hover {
    color: var(--ita-blue);
    transform: translateX(5px);
    font-weight: 600;
}

.aircraft-list li:last-child {
    border-bottom: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.feature-content h4 {
    color: var(--ita-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Fleet Table Styling */
.fleet-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.fleet-table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
}

.fleet-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.fleet-table thead {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
}

.fleet-table thead th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border: none;
}

.fleet-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.fleet-table tbody tr:hover {
    background: rgba(0, 102, 204, 0.05);
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.fleet-table tbody tr:last-child {
    border-bottom: none;
}

.fleet-table tbody td {
    padding: 1.2rem 1rem;
    vertical-align: top;
    color: #555;
}

.fleet-table tbody td:first-child {
    font-weight: 600;
    color: var(--ita-blue);
}

.fleet-table tbody td:nth-child(2) {
    font-weight: 600;
    color: var(--ita-red);
    text-align: center;
}

.fleet-table tbody td:last-child {
    font-style: italic;
    color: #666;
}

/* About Page Styling */
.about-hero {
    background: linear-gradient(135deg, var(--ita-blue) 0%, var(--ita-red) 100%);
    color: white;
    padding: 12rem 0 6rem;
    text-align: center;
    margin-top: 0;
}

.about-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 2rem 0;
}

.section-title {
    color: var(--ita-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.card-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.mission-card h3, .vision-card h3 {
    color: var(--ita-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.value-card:hover {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--ita-blue);
}

.value-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.value-card h4 {
    color: var(--ita-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.team-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
}

.leader-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-content {
    padding: 2rem;
}

.team-content h4 {
    color: var(--ita-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-content .position {
    color: var(--ita-red);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.team-contact {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.contact-email {
    color: var(--ita-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive for Fleet */
@media (max-width: 768px) {
    .fleet-hero {
        padding: 10rem 0 4rem;
    }
    
    .fleet-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .fleet-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .aircraft-category {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .fleet-table-container {
        margin: 1rem 0;
        border-radius: 10px;
    }
    
    .fleet-table thead th {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .fleet-table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* About Page Mobile */
    .about-hero {
        padding: 10rem 0 4rem;
    }
    
    .about-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
}

/* Modern Footer Styling */
.vita-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.discord {
    background: #5865f2;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--ita-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--ita-blue);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--ita-blue);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--ita-blue);
}

.footer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-actions .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-actions .btn-primary {
    background: var(--ita-blue);
    color: white;
    border: 2px solid var(--ita-blue);
}

.footer-actions .btn-primary:hover {
    background: transparent;
    color: var(--ita-blue);
}

.footer-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-actions .btn-outline:hover {
    background: white;
    color: var(--ita-blue);
    border-color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--ita-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
}

/* Section Spacing */
.section {
    padding: 3rem 0;
}

.section--no-pb {
    padding-bottom: 0;
}

.section--light-blue-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
    
    #services .services__item,
    #team .team__item {
        margin-bottom: 2rem;
    }
    
    #join .custom-btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .footer__item {
        margin-bottom: 2rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    #about .text-center p,
    #fleet .text-center p {
        font-size: 1rem;
    }
    
    #services .services__item,
    #team .team__item {
        padding: 1.5rem 1rem;
    }
}

/* Error states */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #dc3545;
    text-align: center;
    margin: 1rem 0;
}

/* vITA Reasons to Join Cards */
.reason-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    height: 100%;
}

.reason-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ita-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.reason-icon {
    font-size: 3rem;
    color: var(--ita-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    color: var(--ita-light-blue);
}

.reason-card h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.reason-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* vITA Benefits Items */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    background: white;
    border-color: var(--ita-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.benefit-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.benefit-content h4 {
    color: var(--ita-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reason-card {
        padding: 2rem 1.5rem;
    }
    
    .reason-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        min-width: auto;
        width: 50px;
        height: 50px;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
}

/* vITA Section Headers */
.section-header .__subtitle {
    color: var(--vita-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* vITA Custom Animations */
@keyframes vitaPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.vita-pulse {
    animation: vitaPulse 2s infinite;
}

/* vITA Background Overlay */
.section--bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 17, 38, 0.8) 0%, rgba(0, 102, 204, 0.6) 100%);
    z-index: 1;
}

.section--bg-img .container {
    position: relative;
    z-index: 2;
}

/* vITA Custom Buttons */
.custom-btn--style-1 {
    background: linear-gradient(135deg, var(--vita-red) 0%, #e01e3a 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(192, 17, 38, 0.3);
}

.custom-btn--style-1:hover {
    box-shadow: 0 6px 20px rgba(192, 17, 38, 0.4);
}

/* vITA Statistics Icons */
.counter .__ico {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* vITA Responsive Adjustments */
@media (max-width: 768px) {
    .start-screen--style-3 {
        background-attachment: scroll;
    }
    
    .site-logo img {
        max-height: 45px;
    }
}

/* vITA Loading Animation */
.vita-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(192, 17, 38, 0.3);
    border-radius: 50%;
    border-top-color: var(--vita-red);
    animation: spin 1s ease-in-out infinite;
}

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

/* Join Section Styles */
.join-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
}

.join-hero {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.join-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.join-badge i {
    font-size: 1rem;
}

.join-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f8f6f0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-title .gradient-text {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-description {
    font-size: 1.2rem;
    color: #f8f6f0;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 500;
}

.join-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.join-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.join-actions .btn-primary {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.join-actions .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

.join-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.join-actions .btn-outline {
    background: transparent;
    color: var(--ita-blue);
    border: 2px solid var(--ita-blue);
}

.join-actions .btn-outline:hover {
    background: var(--ita-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.join-actions .btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

.join-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    border-color: var(--ita-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.join-footer p {
    font-size: 1.1rem;
    color: #f8f6f0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats removed for realistic presentation */

/* Mobile Responsive */
@media (max-width: 768px) {
    .join-section {
        padding: 4rem 0;
    }
    
    .join-title {
        font-size: 2.5rem;
    }
    
    .join-description {
        font-size: 1.1rem;
    }
    
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .join-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .join-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stats mobile styles removed */
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(220, 38, 38, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23f8f9fa"/><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="%23e9ecef"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 12rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-title .gradient-text {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-methods {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    will-change: transform;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.discord-card .contact-icon {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

.email-card .contact-icon {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-light-blue));
}

.vamsys-card .contact-icon {
    background: linear-gradient(135deg, var(--ita-red), #ff6b6b);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    margin-bottom: 1rem;
    will-change: transform;
}

.discord-btn {
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: white;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752c4, #5b6eae);
    color: white;
    transform: translateY(-1px);
}

.email-btn {
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-light-blue));
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, var(--ita-dark-blue), var(--ita-blue));
    color: white;
    transform: translateY(-1px);
}

.vamsys-btn {
    background: linear-gradient(135deg, var(--ita-red), #ff6b6b);
    color: white;
}

.vamsys-btn:hover {
    background: linear-gradient(135deg, #a00e1f, #e01e3a);
    color: white;
    transform: translateY(-1px);
}

.contact-info {
    margin-top: auto;
}

.contact-info small {
    color: #999;
    font-size: 0.85rem;
}

.leadership-section {
    padding: 6rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    will-change: transform;
}

.leader-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.leader-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.leader-position {
    color: var(--ita-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.leader-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.leader-email:hover {
    color: var(--ita-blue);
}

.faq-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: var(--ita-blue);
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: var(--ita-blue);
    color: white;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
}

.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    will-change: transform;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--ita-blue);
    border: none;
}

.cta-actions .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-outline:hover {
    background: white;
    color: var(--ita-blue);
    transform: translateY(-2px);
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 4rem;
        margin-top: 80px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-methods,
    .leadership-section,
    .faq-section,
    .contact-cta {
        padding: 4rem 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

/* Contact Page Navbar Fixes */
body {
    padding-top: 80px; /* Account for fixed navbar */
}

/* Ensure navbar is always visible and properly styled */
.vita-navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Fix navbar on contact page specifically */
.contact-hero {
    position: relative;
    z-index: 1;
}

/* Performance Optimizations for Contact Page */
.contact-hero {
    will-change: auto; /* Remove will-change when not needed */
}

.contact-card,
.leader-card,
.faq-item {
    contain: layout style paint; /* CSS containment for better performance */
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .leader-card,
    .contact-btn,
    .faq-question,
    .cta-actions .btn {
        transition: none;
        transform: none !important;
    }
    
    .faq-answer {
        transition: none;
    }
}

/* Optimize for low-end devices */
@media (max-width: 480px) {
    .contact-card,
    .leader-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .contact-card:hover,
    .leader-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

.join-content {
    position: relative;
    z-index: 2;
}

.join-subtitle {
    color: var(--ita-light-blue);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.join-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8f6f0;
}

.join-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f8f6f0;
    font-weight: 500;
}

.join-actions {
    margin-bottom: 2rem;
}

.join-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.join-actions .btn-primary {
    background: var(--ita-red);
    border: 2px solid var(--ita-red);
    box-shadow: 0 4px 15px rgba(192, 17, 38, 0.3);
}

.join-actions .btn-primary:hover {
    background: transparent;
    color: var(--ita-red);
    box-shadow: 0 6px 20px rgba(192, 17, 38, 0.4);
}

.join-actions .btn-outline-light:hover {
    background: white;
    color: var(--ita-blue);
}

.join-footer {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f8f6f0;
}

.join-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.join-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.join-card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.join-card-header p {
    opacity: 0.8;
    font-size: 1rem;
}

.join-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.join-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.join-feature i {
    color: var(--ita-light-blue);
    font-size: 1.2rem;
}

.join-feature span {
    font-weight: 500;
    font-size: 1rem;
}

/* Why Join Section Styles */
.why-join-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.why-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ita-blue), var(--ita-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.why-card-icon i {
    font-size: 2rem;
    color: white;
}

.why-card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ita-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-card-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .join-title {
        font-size: 2.5rem;
    }
    
    .join-description {
        font-size: 1.1rem;
    }
    
    .join-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .join-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .why-card {
        margin-bottom: 2rem;
    }
    
    .why-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-card-icon i {
        font-size: 1.5rem;
    }
}

/* Depth Effects and Parallax Scrolling */
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    transform: translateZ(0);
}

.parallax-content {
    position: relative;
    z-index: 2;
    transform: translateZ(0);
}

.depth-layer-1 {
    transform: translateZ(0);
    will-change: transform;
}

.depth-layer-2 {
    transform: translateZ(0.1px);
    will-change: transform;
}

.depth-layer-3 {
    transform: translateZ(0.2px);
    will-change: transform;
}

.depth-layer-4 {
    transform: translateZ(0.3px);
    will-change: transform;
}

/* Smooth parallax scrolling */
@media (prefers-reduced-motion: no-preference) {
    .parallax-bg {
        transition: transform 0.1s ease-out;
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
        transform: none;
    }
}

/* Enhanced depth effects for hero sections */
.hero-parallax {
    position: relative;
    overflow: hidden;
}

.hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(192, 17, 38, 0.1) 100%);
    z-index: 1;
}

.hero-parallax .hero-content {
    position: relative;
    z-index: 2;
}

/* Floating elements for depth */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-element:nth-child(2n) {
    animation-delay: -2s;
}

.floating-element:nth-child(3n) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Card depth effects */
.card-depth {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.3s ease;
}

.card-depth:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
