:root {
    --primary-gradient-start: #1e3c72;
    --primary-gradient-middle: #2a5298;
    --primary-gradient-end: #00E676;
    --accent-color: #00E676;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --font-size-base: 14px;
    --font-size-h1: 2rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.2rem;
    --font-size-p: 1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Slider Section - Original Styles */
.slider-section {
    background: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
}



.slide:nth-child(4) {
    background-image: url('https://uttsnoktasi.com/wp-content/uploads/2024/10/UTTS-Istasyon-Ekipmanlari-2024-Yili-Birim-Guncel-Fiyat-Listesi.jpg');
}

.slide:nth-child(2) {
    background-image: url('https://www.optasittanima.com/wp-content/uploads/2024/12/INDIRIM-34.png');
}

.slide:nth-child(3) {
    background-image: url('https://www.cottgroup.com/images/Zoo/gorsel/ulusal-tasit-tanima-sistemi-utts-uygulama-genel-tebliginde-degisiklik-yapildi.webp');
}

.slide:nth-child(1) {
    background-image: url('https://halispetrol.com/media/posts/10/utts-montaji-zorunlu-mu-kimler-icin-zorunlu.jpg');
}
.slide:nth-child(5) {
    background-image: url('https://uttsnoktasi.com/wp-content/uploads/2024/10/UTTS-Istasyon-Ekipmanlari-2024-Yili-Birim-Guncel-Fiyat-Listesi.jpg');
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
    border-radius: 20px;
}

.slide i {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide p {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.slide-icon {
    font-size: 2rem;
    color: #0B1D51;
    background: rgba(11, 29, 81, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slide-content h2 {
    color: #0B1D51;
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.slide-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    width: 100%;
    z-index: 2;
}

.prev-btn,
.next-btn {
    background: var(--primary-gradient-start);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-gradient-middle);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 3px 8px rgba(11, 29, 81, 0.2);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gradient-start);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slide {
        padding: 15px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider {
        height: 400px;
    }
}

/* Application Cards Section - New Styles */
#application-section {
    padding: 15px 0;
    background: #fff;
}

#application-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.app-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-icon {
    width: 220px;
    height: 180px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 5px;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Remove hover effects */
.app-card:hover .app-icon {
    transform: none;
    box-shadow: none;
}

.app-card:hover .app-icon img {
    transform: none;
}

.app-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.app-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.app-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-gradient-start);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.app-btn:hover {
    background: var(--primary-gradient-middle);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    #application-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #application-grid {
        grid-template-columns: 1fr;
    }
}

/* 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: #ffffff;
    padding: 120px 0 60px;
    color: #000000;
    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: 2.5rem;
    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, #00E676, #00E676, transparent);
    transform: translateX(-50%);
    animation: expandLine 0.8s ease-out forwards 0.5s;
}

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

.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: 2.8rem;
    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: #000000;
}

.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: 0.8rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid var(--primary-gradient-start);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-7px);
    border-color: #2ecc71;
    transition: all 0.2 ease-in-out;
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-gradient-start);
    transition: color 0.2s ease-in-out;
}

.service-item:hover i {
    color: #2ecc71;
}

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

.card-preview {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    margin-top: 1rem;
}

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

.highlight {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: #0B1D51;
    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: #0B1D51;
    color: white;
    border: 1px solid #0B1D51;
}

.cta-btn.primary:hover {
    background: #0F3460;
    border-color: #0F3460;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 29, 81, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: #0B1D51;
    border: 1px solid #0B1D51;
}

.cta-btn.secondary:hover {
    background: #0B1D51;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 29, 81, 0.2);
}

.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: 1rem;
    }
    
    .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: 60px 0;
    background: #ffffff;
}

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

.services h2 {
    text-align: center;
    color: var(--primary-gradient-start);
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 29, 81, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gradient-start);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--primary-gradient-start);
    margin-bottom: 15px;
}

.service-card h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

/* 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: #ffffff;
    position: relative;
    overflow: hidden;
}

.partners::before {
    display: none;
}

.partners h2 {
    text-align: center;
    color: var(--primary-gradient-start);
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.partner-card {
    width: 220px;
    height: 120px;
    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 8px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 29, 81, 0.1);
}

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

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gradient-start);
}

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

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

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

/* 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;
    color: var(--primary-gradient-start);
    font-size: 2rem;
    margin-bottom: 40px;
}

.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: 40px 0;
    background: #ffffff;
    margin: 0;
}

.global-stats h2 {
    text-align: center;
    color: var(--primary-gradient-start);
    font-size: 2rem;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-gradient-start);
}

.stat-info h3 {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-info p {
    color: #333333;
    font-size: 1.1rem;
    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: 80px 0;
    background: #ffffff;
    color: #000000;
    position: relative;
    overflow: hidden;
}

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

.products h2 {
    text-align: center;
    color: var(--primary-gradient-start);
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 29, 81, 0.1);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 30px;
    align-items: center;
}

.product-image {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-text h3 {
    font-size: 1.8rem;
    color: var(--primary-gradient-start);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-text p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* UTTS Section */
.utts-section {
    padding: 40px 0;
    background: #fff;
    position: relative;
    min-height: 60vh;
}

.utts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.utts-content {
    max-width: 600px;
}

.utts-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gradient-start);
}

.utts-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gradient-middle);
    margin-bottom: 1.5rem;
}

.utts-description {
    margin-bottom: 2rem;
}

.utts-description p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.utts-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-gradient-start);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.utts-cta-btn:hover {
    background: var(--primary-gradient-middle);
    transform: translateY(-3px);
}

.utts-slider {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.slider-container {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

.slide i {
    font-size: 3rem;
    color: var(--primary-gradient-start);
    margin-bottom: 1.5rem;
}

.slide p {
    font-size: 1.4rem;
    color: var(--primary-gradient-start);
    line-height: 1.6;
    font-weight: 600;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    background: var(--primary-gradient-start);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 1.2rem;
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gradient-start);
    transform: scale(1.3);
}

@media (max-width: 1200px) {
    .utts-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .utts-title {
        font-size: 3rem;
    }
    
    .utts-subtitle {
        font-size: 2rem;
    }
    
    .utts-slider {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .utts-content {
        text-align: center;
        padding: 0 1rem;
    }

    .utts-title {
        font-size: 1.8rem;
    }

    .utts-subtitle {
        font-size: 1.1rem;
    }

    .utts-description {
        text-align: left;
    }

    .slide p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .utts-title {
        font-size: 1.5rem;
    }

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

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 29, 81, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(11, 29, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #0B1D51;
}

.benefit-card h4 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

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

.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.download-links .app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-gradient-start);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-links .app-btn:hover {
    background: var(--primary-gradient-middle);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 29, 81, 0.2);
}

.download-links .app-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .download-links {
        width: 100%;
    }
    
    .download-links .app-btn {
        width: 100%;
        text-align: center;
    }
}

/* Responsive Navigation Styles */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 16px;
        color: #333;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        padding: 10px;
    }

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

    .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);
    }

    .membership-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .lang-selector {
        margin-left: 10px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 40px;
    }

    .membership-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .lang-selector {
        margin-left: 5px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .hamburger {
        padding: 8px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }
}

/* Global section spacing */
section {
    padding: 40px 0;
    margin: 0;
}

/* Specific section adjustments */
.slider-section,
.benefits-section,
.products,
.partners,
.global-stats,
.world-map-section,
.utts-section {
    padding: 40px 0;
    margin: 0;
}

/* Section headings */
section h2 {
    margin-bottom: 40px;
}

/* Grid gaps */
.products-grid,
.partners-grid,
.benefits-grid {
    gap: 30px;
}

/* Card padding */
.product-content,
.partner-card,
.benefit-card {
    padding: 30px;
}

/* Container padding */
.section-container,
.benefits-container,
.utts-container {
    padding: 0 20px;
}

/* Large screen adjustments (27" and above) */
@media screen and (min-width: 1920px) {
    section {
        padding: 20px 0;
    }

    .slider-section,
    .benefits-section,
    .products,
    .partners,
    .global-stats,
    .world-map-section,
    .utts-section {
        padding: 20px 0;
    }

    section h2 {
        margin-bottom: 20px;
    }

    .products-grid,
    .partners-grid,
    .benefits-grid {
        gap: 20px;
    }

    .product-content,
    .partner-card,
    .benefit-card {
        padding: 20px;
    }
}

.cta-section {
    background: linear-gradient(135deg, #1b3277, #16213E, #1A1B27);
    padding: 40px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.cta-section .app-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cta-section .app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .app-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-section .app-btn i {
    font-size: 1.5rem;
    color: #fff;
}

.cta-section .app-btn span {
    color: #fff;
    font-weight: 500;
}
