:root {
    --primary-gradient-start: #0B1D51;
    --primary-gradient-middle: #0F3460;
    --primary-gradient-end: #006466;
    --accent-color: #00E676;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(90deg, 
        var(--primary-gradient-start),
        var(--primary-gradient-middle),
        var(--primary-gradient-end)
    );
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 29, 81, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.logo img {
    height: 45px;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.membership-btn {
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.membership-btn:hover {
    transform: translateY(-2px);
    background: #00ff9d;
}

.membership-btn::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--nav-gradient);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        var(--primary-gradient-start),
        var(--primary-gradient-middle),
        var(--primary-gradient-end)
    );
    padding: 120px 0 60px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-50%);
    animation: expandLine 0.8s ease-out forwards 0.5s;
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}

.main-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-title .highlight-line {
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.main-title .emphasis {
    color: var(--accent-color);
    font-size: 4rem;
    display: block;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}



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

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #a5f3fc;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.card-preview {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    width: 100%;
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(165, 243, 252, 0.3));
}

.highlight {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--accent-color);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .main-title .emphasis {
        font-size: 3.2rem;
    }
    
    .card-preview {
        order: -1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
}

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

.services h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
}

.services h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #00f260;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #00f260;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: #fff;
}

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

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Modern Button Styles */
.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(45deg, #00f260, #0575e6);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 242, 96, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 242, 96, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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


/* Partners Section */
.partners {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.partners h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.partners h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.partner-card {
    width: 200px;
    height: 100px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-card:hover {
    transform: translateY(-8px);
}

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

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

#world-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00E676;
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p i {
    color: #00E676;
    font-size: 1.2rem;
}

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

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #00E676;
    transform: translateY(-3px);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #00E676;
    transform: translateX(5px);
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate3d(1, 1, 1, 0deg);
    }
    50% {
        transform: translateY(-20px) rotate3d(1, 1, 1, 5deg);
    }
    100% {
        transform: translateY(0px) rotate3d(1, 1, 1, 0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: var(--transition);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Stations Section */
.stations {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.stations h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 600;
}

.stations-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.stations-info {
    padding: 2rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(0deg);
    transform-style: preserve-3d;
    color: var(--text-light);
}

.stat-card:hover {
    transform: perspective(1000px) rotateX(10deg) translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.15);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.station-search {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.station-search h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.search-box {
    position: relative;
    display: flex;
    gap: 1rem;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.map-container {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#world-map {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.active {
    background: #4CAF50;
}

.dot.coming-soon {
    background: #FFC107;
}

@media (max-width: 992px) {
    .stations-content {
        grid-template-columns: 1fr;
    }

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

    .map-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Global Stats Section */
.global-stats {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.global-stats h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--light-text);
    font-weight: 600;
    position: relative;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.stat-info h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* World Map Section */
.world-map-section {
    padding: 2rem;
    width: 100%;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    
    position: relative;
}

.map-header {
    text-align: center;
    padding: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.map-controls {
    position: relative;
    margin: 0 auto 1rem;
    z-index: 1000;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#world-map {
    height: 800px !important;
    width: calc(100% - 4rem) !important;
    margin: 0 auto;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .world-map-section {
        padding: 1rem;
    }
    
    #world-map {
        width: calc(100% - 2rem) !important;
        height: 600px !important;
    }
    
    .map-controls {
        width: 95%;
        padding: 10px;
    }
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.active {
    background: var(--accent-color);
}

.dot.coming-soon {
    background: #FFC107;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .global-stats h2 {
        font-size: 2.5rem;
    }

    .stat-info h3 {
        font-size: 2.5rem;
    }

    .map-wrapper {
        height: 500px;
    }

    .map-filters {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
        padding: 1rem;
        border-radius: 15px;
    }

    .search-btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.products .section-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.products h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00E676, #00B0FF);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00E676;
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    object-fit: contain;
    max-height: 300px;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.product-text h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .product-text h3 {
    color: #00E676;
    transform: translateX(10px);
}

.product-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #00E676;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.product-card:hover .product-text h3::after {
    width: 100px;
    background: linear-gradient(90deg, #00E676, #00B0FF);
}

.product-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.button-wrapper {
    margin-top: auto;
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    object-fit: contain;
    max-height: 300px;
}

.product-card .btn {
    background: linear-gradient(45deg, #00E676, #00B0FF);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.product-card .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: 0.5s;
}

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

.product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
    background: linear-gradient(45deg, #00B0FF, #00E676);
}

.product-card .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .button-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .product-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 80px 0;
    }
    
    .products h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .product-text h3 {
        font-size: 1.8rem;
    }
    
    .product-text p {
        font-size: 1rem;
    }
    
    .product-content {
        padding: 30px 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0B1D51, #16213E, #1A1B27);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .product-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .product-text {
        padding: 1rem 0;
    }

    .product-text h3 {
        font-size: 2rem;
    }

    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .products h2 {
        font-size: 2.2rem;
    }

    .product-image {
        flex-direction: column;
    }

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

/* Map Styles */
.custom-marker {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
}

.marker-dot.active {
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.marker-dot.coming {
    background: #FFC107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.custom-cluster-marker {
    background: none;
}

.cluster-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.cluster-marker.medium {
    background: rgba(255, 152, 0, 0.8);
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.cluster-marker.large {
    background: rgba(244, 67, 54, 0.8);
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.custom-popup {
    min-width: 250px;
}

.station-popup {
    padding: 15px;
}

.station-popup h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.status-badge.active {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status-badge.coming {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.popup-content {
    margin: 10px 0;
}

.popup-content p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.popup-content i {
    width: 20px;
    color: #1976D2;
}

.direction-btn {
    width: 100%;
    padding: 8px 12px;
    background: #1976D2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.direction-btn:hover {
    background: #1565C0;
    transform: translateY(-1px);
}

.direction-btn i {
    font-size: 14px;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 20px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #1976D2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

/* Filter Buttons */
.map-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    color: #666;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #1976D2;
    color: #1976D2;
}

.filter-btn.active {
    background: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
}

.services-list {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1);
    background: rgba(0, 230, 118, 0.2);
}

.service-item span {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .service-item {
        padding: 0.8rem;
    }

    .service-item i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .service-item span {
        font-size: 0.9rem;
    }
}

.highlight-text {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .services-list {
        padding: 1.5rem;
    }

    .services-list li {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
}

.lang-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}

.lang-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .lang-selector {
        margin: 1rem 0;
        justify-content: center;
    }
} 

.product-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
    height: 100%;
}

.product-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 600px;
    order: 1;
}

.product-text h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.product-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    min-height: 300px;
    order: 2;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    object-fit: contain;
    max-height: 280px;
}

/* Önceki nth-child(even) stillerini kaldırıyoruz çünkü artık hepsi aynı düzende olacak */
.product-card:nth-child(even) .product-content {
    grid-template-columns: 1.2fr 0.8fr;
}

.product-card:nth-child(even) .product-text {
    order: 1;
}

.product-card:nth-child(even) .product-image {
    order: 2;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    
    .product-text {
        padding: 20px 0;
        margin: 0 auto;
        order: 2;
    }
    
    .product-image {
        order: 1;
        min-height: 250px;
        padding: 20px 0;
    }
} 
.partner-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 120px;
    border: 2px solid transparent;
    max-width: 280px;
    margin: 0 auto;
}

.partner-card img {
    max-width: 75%;
    height: auto;
    transition: all 0.4s ease;
    transform-origin: center;
}

/* TP Logo için özel ayar */
.partner-card:nth-child(2) {
    padding: 0;
}

.partner-card:nth-child(2) img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.partner-card:hover {
    transform: translateY(-5px);
    border: 2px solid #00E676;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.15);
}

.partner-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partner-card {
        height: 100px;
        padding: 20px;
    }
    
    .partner-card:nth-child(2) {
        padding: 0;
    }
    
    .partner-card img {
        max-width: 70%;
    }
    
    .partner-card:nth-child(2) img {
        max-width: 100%;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        height: 90px;
        padding: 15px;
        max-width: 240px;
    }
    
    .partner-card:nth-child(2) {
        padding: 0;
    }
    
    .partner-card img {
        max-width: 65%;
    }
    
    .partner-card:nth-child(2) img {
        max-width: 100%;
        padding: 10px;
    }
}