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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #1a1a2e;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.accent {
    color: #3282B8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(135deg, #0F4C75 0%, #3282B8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(15, 76, 117, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3282B8;
}

.cta-nav {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
}

.cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Poster Row Layout */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a2e 0%, #0F4C75 50%, #1a1a2e 100%);
    padding: 100px 20px 60px;
}

.hero-posters {
    justify-content: flex-start;
    padding-top: 120px;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Poster Marquee - Scrollable + Auto-scroll */
.poster-marquee {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 50px;
    padding: 20px 0;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.poster-marquee::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.poster-marquee:active {
    cursor: grabbing;
}

.poster-marquee.auto-scroll .poster-track {
    animation: scrollMarquee 60s linear infinite;
}

.poster-track {
    display: flex;
    gap: 25px;
    width: max-content;
    padding: 0 20px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.poster-item {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.poster-item img {
    height: 280px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.poster-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.poster-item:hover img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* Legacy background-based hero (keeping for fallback) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0F4C75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.hover-hint {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
    margin-top: 10px !important;
    font-weight: 400;
}

/* Services Section */
.services {
    background: #1a1a2e;
    padding-top: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.services-two-column {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 60px auto 0;
    gap: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(50, 130, 184, 0.1);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #0F4C75 0%, #3282B8 100%);
    color: white;
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(50, 130, 184, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 30px;
    color: #3282B8;
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

.service-card.featured .service-features li::before {
    color: white;
}

/* Content Showcase Section */
.content-showcase {
    background: #16213e;
    padding: 100px 0;
}

.content-showcase .section-header h2 {
    color: white;
}

.content-showcase .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.content-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
    background: white;
    height: 250px;
}

.content-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.content-item:nth-child(3) img {
    object-position: center right;
}

/* Clients Section */
.clients {
    background: #f8f9fa;
    padding: 80px 0;
}

.clients .section-header h2 {
    color: #333;
    margin-bottom: 60px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
    contain: layout style paint;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 120px;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.client-logo:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter;
    backface-visibility: hidden;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Featured Screenings Section */
.featured-screenings {
    padding: 6rem 0;
    background: #1a1a1a;
}

.featured-screenings .section-header h2 {
    color: #ffffff;
}

.featured-screenings .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

.film-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    will-change: transform;
}

.film-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

.film-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.film-card:hover .film-poster img {
    transform: scale(1.02);
}

/* Poster Overlay Styles */
.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.film-card:hover .poster-overlay {
    opacity: 1;
}

.overlay-stats {
    text-align: center;
    padding: 20px;
}

.stat-item {
    margin-bottom: 15px;
    display: block;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}





/* About Section */
.about {
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature i {
    font-size: 30px;
    color: #FF6B35;
    margin-top: 5px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

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

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.visual-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.visual-grid img:hover {
    transform: scale(1.05);
}

.grid-item-1 {
    grid-row: span 2;
}

.grid-item-2,
.grid-item-3 {
    grid-row: span 1;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: #3282B8;
    width: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-item a {
    color: #3282B8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: #3282B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3282B8;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo {
    height: 35px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px; /* constrain width so they don't spread too far */
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3282B8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #555;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #3282B8;
    text-decoration: none;
}

/* Large Screen Optimization */
@media (min-width: 1200px) {
    .films-grid {
        max-width: 1200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Poster Row Hero Mobile */
    .hero-posters {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 40px;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Poster marquee on mobile */
    .poster-marquee {
        margin-top: 30px;
    }
    
    .poster-track {
        gap: 15px;
    }
    
    .poster-item img {
        height: 180px;
    }

    .services-grid,
    .services-two-column {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 30px;
    }

    .films-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .content-showcase {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .content-item {
        height: 200px;
        border-radius: 10px;
    }
    
    .clients {
        padding: 60px 0;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 300px;
    }
    
    .client-logo {
        height: 100px;
    }
    
    .client-logo img {
        max-height: 60px;
    }
    

    


    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .visual-grid {
        height: 300px;
        grid-template-columns: 1fr;
    }

    .grid-item-1,
    .grid-item-2,
    .grid-item-3 {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 30px 20px;
    }
    
    .film-poster:hover {
        transform: none; /* Disable hover lift on mobile */
    }
    
    .film-poster:hover .poster-frame {
        transform: none; /* Disable hover scale on mobile */
    }
    
    .poster-overlay {
        opacity: 1; /* Always show overlay on mobile */
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    }
}

/* Team Page Styles */
.nav-menu a.active {
    color: #3282B8;
    font-weight: 600;
}

.team-hero {
    background: linear-gradient(135deg, #0F4C75 0%, #3282B8 100%);
    padding: 80px 0 40px;
    text-align: center;
    color: white;
}

.team-hero .section-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.team-hero .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.team {
    background: #1a1a2e;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    contain: layout;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.team-card:hover {
    transform: translate3d(0, -5px, 0);
}

.team-member-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    contain: layout style paint;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.team-card:hover .team-member-photo img {
    transform: scale3d(1.02, 1.02, 1);
}

.team-member-info {
    padding: 40px;
}

.team-member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.team-member-title {
    font-size: 1.1rem;
    color: #3282B8;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.team-member-bio:last-child {
    margin-bottom: 0;
}

.team-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.team-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.team-cta .cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.team-cta .contact-email {
    margin-top: 30px;
}

.team-cta .contact-email p {
    font-size: 1.1rem;
    color: #3282B8;
    font-weight: 500;
    margin: 0;
}

.team-cta .contact-email i {
    margin-right: 10px;
}

/* Team Page Responsive Design */
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .team-card {
        display: grid;
        grid-template-columns: 300px 1fr;
        align-items: stretch;
    }
    
    .team-member-photo {
        height: auto;
    }
    
    .team-member-info {
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 70px 0 35px;
    }
    
    .team-hero .section-header h1 {
        font-size: 2.5rem;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team-grid {
        gap: 40px;
    }
    
    .team-member-info {
        padding: 30px;
    }
    
    .team-member-info h3 {
        font-size: 1.5rem;
    }
    
    .team-cta {
        padding: 60px 0;
    }
    
    .team-cta .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-hero .section-header h1 {
        font-size: 2rem;
    }
    
    .team-member-info {
        padding: 25px;
    }
    
    .team-member-info h3 {
        font-size: 1.3rem;
    }
    
    .team-member-title {
        font-size: 1rem;
    }
}

/* Dashboard New Data Styles */
.table-container {
    overflow-x: auto;
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.data-table td {
    color: #333;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.badge-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.badge-neutral {
    background: rgba(149, 165, 166, 0.1);
    color: #7f8c8d;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-radius: 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn.active {
    background: #3282B8;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #f0f0f0;
}
