/* Türkçe Karakter Desteği için Font Import */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;700;900&display=swap&subset=latin,latin-ext');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #f06292;
    --accent-color: #ad1457;
    --light-pink: #f8bbd9;
    --background-dark: #0a0a0a;
    --surface-dark: #1a1a1a;
    --text-white: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --primary-rgba: rgba(233, 30, 99, 0.3);
    --primary-rgba-light: rgba(233, 30, 99, 0.1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--background-dark);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 125px;
    height: 125px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.apply-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    color: #ffffff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(2px) brightness(0.5) contrast(0.9);
    transform: scale(1.05);
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(233, 30, 99, 0.3) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    /* Orta seviye karartma katmanı */
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: multiply;
    /* Hafif overlay efekti */
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2em;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #e91e63;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(233, 30, 99, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    40% {
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) rotate(45deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    min-height: 90px;
    box-sizing: border-box;
}

.feature .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: translateX(10px);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: #ffffff;
    font-size: 2rem;
    margin-left: 5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(233, 30, 99, 0.95), rgba(240, 98, 146, 0.95));
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    border-radius: 15px;
}

.service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-overlay h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.service-overlay p {
    color: #ffffff;
    margin-bottom: 20px;
}

.service-overlay ul {
    list-style: none;
    text-align: left;
}

.service-overlay li {
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.service-overlay li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--surface-dark) 50%, var(--background-dark) 100%);
}

.partners .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Partners Grid - Yatay Düzen */
.partners-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 50px auto 0;
    max-width: 1200px;
}

.partner-card {
    flex: 0 0 auto;
    width: 280px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid rgba(233, 30, 99, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
    background: rgba(233, 30, 99, 0.1);
}

.partner-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(233, 30, 99, 0.3);
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    border-color: var(--primary-color);
    background: rgba(233, 30, 99, 0.15);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%) brightness(0.9);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.1);
}

.partner-card h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Eski partners-gallery sistemi (backup) */
.partners-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.partner-photo {
    flex: 0 0 auto;
    position: relative;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 180px;
    width: 280px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-photo:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
    background: rgba(233, 30, 99, 0.1);
}

.partner-photo img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%) brightness(0.9);
    display: block;
    margin: 0 auto;
}

.partner-photo:hover img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.1);
}

/* Tooltip effect */
.partner-photo:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
    opacity: 1;
    animation: fadeInUp 0.3s ease;
}

.partner-photo::after {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-image:hover img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.member-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.member-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-id {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f7931e" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23f7931e" opacity="0.1"/><circle cx="90" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Preview Section */
.gallery-preview-section {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f7931e" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23f7931e" opacity="0.1"/><circle cx="90" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
    margin-bottom: 50px;
}

.preview-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-image.large {
    grid-row: span 2;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(233, 30, 99, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.preview-image:hover .preview-overlay {
    opacity: 1;
}

.preview-image:hover img {
    transform: scale(1.1);
}

.preview-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.preview-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.preview-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.gallery-cta-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Gallery Preview */
@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
        gap: 15px;
    }
    
    .preview-image.large {
        grid-row: span 1;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-form {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Apply Section */
.apply {
    padding: 100px 0;
    background: #0a0a0a;
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.requirements {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.1);
    height: fit-content;
}

.requirements h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.requirements ul {
    list-style: none;
}

.requirements li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.requirements li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.apply-form {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkmark {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.modal-content video {
    width: 100%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid rgba(233, 30, 99, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .about-content,
    .contact-content,
    .apply-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Partners - Responsive */
    .partners-grid {
        gap: 20px;
        justify-content: center;
    }
    
    .partner-card {
        width: calc(50% - 20px);
        min-width: 250px;
    }
    
    .partners-gallery {
        text-align: center;
        max-width: 100%;
    }
    
    .partner-photo {
        height: 140px;
        width: 220px;
        padding: 20px;
        margin: 10px;
    }
    
    .partner-photo img {
        height: 90px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .team-member,
    .stat-card {
        padding: 30px 20px;
    }
    
    /* Partners - Mobile */
    .partners-grid {
        gap: 15px;
    }
    
    .partner-card {
        width: 100%;
        max-width: 300px;
    }
    
    .partners-gallery {
        text-align: center;
    }
    
    .partner-photo {
        height: 120px;
        width: 160px;
        padding: 15px;
        margin: 8px;
    }
    
    .partner-photo img {
        height: 80px;
    }
    
    .contact-form,
    .apply-form,
    .requirements {
        padding: 30px 20px;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--surface-dark) 50%, var(--background-dark) 100%);
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero .hero-content {
    text-align: center;
    margin: 0 auto;
}

.about-hero .page-title,
.about-hero .page-subtitle {
    text-align: center;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--primary-rgba);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
}

.company-story {
    padding: 100px 0;
    background: var(--surface-dark);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.image-placeholder {
    background: linear-gradient(145deg, var(--background-dark), #0f0f0f);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--primary-rgba-light);
}

.image-placeholder p {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 1.1rem;
}

.mission-vision {
    padding: 100px 0;
    background: var(--background-dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: linear-gradient(145deg, var(--surface-dark), #0f0f0f);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary-rgba-light);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--primary-rgba-light);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-rgba-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.mv-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.values {
    padding: 100px 0;
    background: var(--surface-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(145deg, var(--background-dark), #0f0f0f);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-rgba-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-rgba);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-rgba-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.timeline {
    padding: 100px 0;
    background: var(--background-dark);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-rgba);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--surface-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--primary-rgba-light);
    margin: 0 30px;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile responsiveness for about page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .timeline-date {
        min-width: 60px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .timeline-content {
        margin-left: 20px;
        margin-right: 0;
        max-width: none;
    }
}

/* Team Page Specific Styles */
.team-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--surface-dark) 50%, var(--background-dark) 100%);
    padding: 150px 0 100px;
    text-align: center;
}

.team-hero .hero-content {
    text-align: center;
    margin: 0 auto;
}

.team-hero .page-title,
.team-hero .page-subtitle {
    text-align: center;
}

.management-team {
    padding: 100px 0;
    background: var(--surface-dark);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.manager-card {
    background: linear-gradient(145deg, var(--background-dark), #0f0f0f);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--primary-rgba-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-rgba-light), transparent);
    transition: left 0.5s ease;
}

.manager-card:hover::before {
    left: 100%;
}

.manager-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--primary-rgba-light);
    border-color: var(--primary-rgba);
}

.manager-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.manager-card:hover .manager-photo img {
    transform: scale(1.1);
}

.manager-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.manager-info .position {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.manager-info .description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.manager-card .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.manager-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-rgba-light);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.manager-card .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-rgba);
}

.senior-drivers {
    padding: 100px 0;
    background: var(--background-dark);
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(4, 400px);
    gap: 20px;
    justify-content: center;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

.truck-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-rgba-light);
    width: 400px;
    height: 718px;
    flex-shrink: 0;
}

.truck-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px var(--primary-rgba-light);
}

.truck-card img {
    width: 400px;
    height: 718px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.truck-card:hover img {
    transform: scale(1.05);
}

.truck-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.member-badge {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.driver-name {
    color: var(--text-white);
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.team-stats {
    padding: 100px 0;
    background: var(--surface-dark);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    background: linear-gradient(145deg, var(--background-dark), #0f0f0f);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid var(--primary-rgba-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-rgba);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-rgba-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.join-team {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ad1457 100%);
    text-align: center;
}

.join-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.join-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-content .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.join-content .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Mobile responsiveness for team page */
@media (max-width: 768px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .drivers-grid {
        grid-template-columns: repeat(2, 300px);
        gap: 20px;
        padding: 0 15px;
    }
    
    .truck-card {
        width: 300px;
        height: 538px;
    }
    
    .truck-card img {
        width: 300px;
        height: 538px;
    }
    
    .stats-row {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .join-content h2 {
        font-size: 2rem;
    }
    
    .manager-card,
    .driver-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .drivers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        max-width: 280px;
    }
    
    .truck-card {
        width: 250px;
        height: 448px;
        justify-self: center;
    }
    
    .truck-card img {
        width: 250px;
        height: 448px;
    }
    
    .truck-overlay {
        padding: 15px 10px 10px;
    }
    
    .member-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .driver-name {
        font-size: 0.9rem;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 100px 0;
    background: var(--background-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(233, 30, 99, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-info {
    color: white;
}

.gallery-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-zoom {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.gallery-zoom i {
    color: white;
    font-size: 1.2rem;
}

/* Gallery Modal */
#galleryModal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

#galleryModal .modal-content {
    position: relative;
    background-color: var(--surface-dark);
    margin: 5% auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
}

#galleryModal .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    z-index: 2001;
    cursor: pointer;
    transition: color 0.3s ease;
}

#galleryModal .close:hover {
    color: var(--primary-color);
}

#modalImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#modalInfo {
    padding: 30px;
    background: var(--surface-dark);
}

#modalTitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

#modalDescription {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-filters {
        justify-content: center;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    #galleryModal .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    #modalImage {
        height: 250px;
    }
    
    #modalInfo {
        padding: 20px;
    }
}

/* Discord Stats Section */
.discord-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, rgba(26, 26, 26, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.discord-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(233,30,99,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.stat-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Responsive Discord Stats */
@media (max-width: 768px) {
    .discord-stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Türkçe Karakter Sorunu için Özel CSS Kuralları */
.driver-name,
.member-badge,
.nav-link,
.section-title,
.section-subtitle,
h1, h2, h3, h4, h5, h6,
.btn,
.stat-label,
.contact-details h4,
.footer-section h4 {
    font-family: 'Segoe UI', 'Tahoma', 'Arial Unicode MS', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif !important;
    -webkit-font-feature-settings: "kern" 1;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-text-stroke: 0.01em transparent;
}

/* Özel Türkçe karakterler için Unicode desteği */
.turkish-text {
    font-family: 'Segoe UI', 'Tahoma', 'Arial Unicode MS', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Orbitron için Türkçe karakter desteği */
.logo-text,
.hero-title,
.title-main,
.title-sub,
.stat-number {
    font-family: 'Orbitron-Turkish', 'Orbitron', 'Courier New', 'Lucida Console', monospace !important;
}

/* Driver names için özel kural */
.truck-overlay .driver-name {
    font-family: 'Segoe UI', 'Tahoma', 'Arial Unicode MS', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* End of Styles */
