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

body {
    background-color: #f7f7f7;
}

.margin-top-100 {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .margin-top-100 {
        margin-top: 150px;
    }
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    color: #007BFF;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.contact-item:hover {
    background: #f1f1f1;
    color: #007BFF;
}

.contact-item i {
    font-size: 16px;
}

/* Main Navbar Styles */
.navbar-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-navbar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: #007BFF;
    text-decoration: none;
}

.logo {
    width: 180px;
    height: 40px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #007BFF;
    background: rgba(0, 123, 255, 0.08);
}

.nav-link.active {
    color: #007BFF;
    background: rgba(0, 123, 255, 0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: #007BFF;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    color: #007BFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 123, 255, 0.08);
    color: #007BFF;
    padding-left: 25px;
}

.dropdown-item i {
    font-size: 16px;
    color: #007BFF;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mega-menu-section h6 {
    color: #007BFF;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.mega-menu-section ul {
    list-style: none;
}

.mega-menu-section li {
    margin-bottom: 8px;
}

.mega-menu-section a {
    color: #007BFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mega-menu-section a:hover {
    background: rgba(0, 123, 255, 0.08);
    color: #007BFF;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: white;
}

/* Mobile Styles */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    color: #007BFF;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.dropdown-toggle::after {
    display: none;
}




@media (max-width: 991px) {
    .contact-info {
        gap: 15px;
    }

    .dropdown {
        width: 100%;
    }

    .contact-item {
        font-size: 12px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .dropdown-menu,
    .mega-menu {
        visibility: visible !important;
        /* Başta gizli olacak */
        position: static;
        width: 100%;
        opacity: 1 !important;
        display: none;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        margin-top: 10px;
    }

    .dropdown.show .dropdown-menu,
    .dropdown.show .mega-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .social-links {
        gap: 0px;
    }

    .contact-info {
        flex-direction: column;
        gap: 0px;
    }

    .contact-item {
        font-size: 11px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .logo {
        width: 120px;
    }
}



/* Scroll Effect */
.navbar-hidden {
    transform: translateY(-100%);
}






 /* Hero Section */
        .hero-section {
            height: 100vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        /* Slider Container */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            width: 100% ;
            height: 100vh;
               background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-slide::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 81, 255, 0.5);
            z-index: 1;
        }

        /* Slick dots özelleştirme */
        .slick-dots {
            bottom: 30px !important;
            z-index: 3;
        }

        .slick-dots li button:before {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
        }

        .slick-dots li.slick-active button:before {
            color: #FFD700;
        }

        /* Slick arrows özelleştirme */
        .slick-prev, .slick-next {
            z-index: 999999;
            width: 50px;
            height: 50px;
        }

        .slick-prev:before, .slick-next:before {
            font-size: 30px;
            color: rgba(255, 255, 255, 0.7);
        }

        .slick-prev {
            left: 30px;
        }

        .slick-next {
            right: 30px;
        }

        /* İçerik container */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .background-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        /* Animasyonlar */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .fade-in-up.delay-1 {
            animation-delay: 0.5s;
        }

        .fade-in-up.delay-2 {
            animation-delay: 1s;
        }

        .fade-in-up.delay-3 {
            animation-delay: 1.5s;
        }

        .fade-in-up.delay-4 {
            animation-delay: 2s;
        }

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

        /* Icon animasyonları */
        .icon-float {
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .hero-btn {
            background: #FF6600;
            margin-top: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
            border-radius: 5px;
        }

        .hero-btn:hover {
            background: #FF6600;
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
            color: white;
            text-decoration: none;
        }

        /* Responsive başlık */
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .lead {
            font-size: 1.4rem;
            margin-bottom: 30px;
        }

        /* Hero icon */
        .hero-icon {
            font-size: 4rem;
            margin-bottom: 30px;
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        /* Özellik iconları */
        .feature-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .hero-feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 120px;
            min-width: 100px;
            flex: 0 1 auto;
        }

        .hero-feature-item i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #FFD700;
            transition: all 0.3s ease;
        }

        .hero-feature-item:hover i {
            transform: scale(1.1);
            color: #FFF;
        }

        .hero-feature-item span {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
            text-align: center;
        }

        /* Arka plan şekilleri */
        .background-shapes span {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            animation: float 8s ease-in-out infinite;
        }

        .background-shapes span:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .background-shapes span:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        .background-shapes span:nth-child(3) {
            width: 90px;
            height: 90px;
            top: 60%;
            left: 75%;
            animation-delay: 6s;
        }

        .background-shapes span:nth-child(4) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 60%;
            animation-delay: 2s;
        }

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

        /* Floating icons */
        .floating-icons i {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            animation: floatIcon 10s linear infinite;
        }

        .floating-icons i:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icons i:nth-child(2) {
            top: 70%;
            right: 20%;
            animation-delay: 3s;
        }

        .floating-icons i:nth-child(3) {
            bottom: 30%;
            left: 80%;
            animation-delay: 6s;
        }

        .floating-icons i:nth-child(4) {
            top: 40%;
            right: 10%;
            animation-delay: 9s;
        }

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

        /* Puls efekti */
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Tablet ve küçük ekranlar */
        @media (max-width: 992px) {
            h1 {
                font-size: 3rem;
            }

            .lead {
                font-size: 1.2rem;
            }

            .hero-icon {
                font-size: 3.5rem !important;
            }

            .feature-icons {
                gap: 30px;
            }

            .hero-feature-item {
                max-width: 100px;
            }

            .hero-feature-item i {
                font-size: 2.2rem !important;
            }

            .slick-prev {
                left: 15px;
            }

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

        /* Mobil ekranlar */
        @media (max-width: 768px) {
            .hero-section {
                height: 100vh;
                padding: 20px 15px;
            }

            h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .lead {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }

            .hero-icon {
                font-size: 3rem !important;
                margin-bottom: 20px;
            }

            .feature-icons {
                gap: 20px;
                margin: 30px 0;
            }

            .hero-feature-item {
                max-width: 80px;
            }

            .hero-feature-item i {
                font-size: 2rem !important;
                margin-bottom: 8px;
            }

            .hero-feature-item span {
                font-size: 0.8rem;
            }

            .hero-btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }

            .background-shapes span:nth-child(1) {
                width: 80px;
                height: 80px;
            }

            .background-shapes span:nth-child(2) {
                width: 120px;
                height: 120px;
            }

            .background-shapes span:nth-child(3) {
                width: 60px;
                height: 60px;
            }

            .background-shapes span:nth-child(4) {
                width: 100px;
                height: 100px;
            }


        }

        /* Çok küçük ekranlar */
        @media (max-width: 576px) {
            .hero-section {
                padding: 15px 10px;
            }

            h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .lead {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .hero-icon {
                font-size: 2.5rem !important;
                margin-bottom: 15px;
            }

            .feature-icons {
                gap: 15px;
                margin: 25px 0;
                justify-content: space-around;
            }

            .hero-feature-item {
                max-width: 70px;
            }

            .hero-feature-item i {
                font-size: 1.8rem !important;
                margin-bottom: 6px;
            }

            .hero-feature-item span {
                font-size: 0.7rem;
                line-height: 1.2;
            }

            .hero-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }

            .floating-icons i {
                font-size: 1.5rem;
            }
        }

        /* Landscape mobil */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-section {
                height: 100vh;
                padding: 10px 15px;
            }

            .hero-icon {
                font-size: 2.5rem !important;
                margin-bottom: 10px;
            }

            h1 {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .lead {
                font-size: 0.95rem;
                margin-bottom: 15px;
            }

            .feature-icons {
                margin: 15px 0;
                gap: 15px;
            }

            .hero-feature-item i {
                font-size: 1.5rem !important;
                margin-bottom: 5px;
            }

            .hero-feature-item span {
                font-size: 0.7rem;
            }
        }

/* Features Section Styling */
.features-section {
    cursor: default;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23007BFF" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.features-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #007BFF, #0056B3);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    animation: underlineGrow 1s ease-out forwards;
    transform: scaleX(0);
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

.home-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 86, 179, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-card:hover,
.home-feature-card.card-hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.home-feature-card-inner {
    position: relative;
    z-index: 2;
}

.home-feature-icon-wrapper {
    position: relative;
    display: inline-block;
}

.home-feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: pulse 2s ease-in-out infinite;
}

.home-feature-icon {
    font-size: 3rem;
    color: #007BFF;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.home-feature-card:hover .home-feature-icon {
    color: #0056B3;
    transform: scale(1.1) rotate(5deg);
}

.home-feature-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover .home-feature-icon-overlay {
    opacity: 1;
}

.home-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.home-feature-card:hover .home-feature-title {
    color: #007BFF;
}

.home-feature-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.home-feature-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.home-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007BFF;
    font-family: 'Courier New', monospace;
}

.home-stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.fade-in-title {
    opacity: 0;
    animation: fadeInTitle 1s ease-out 0.5s forwards;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-section-title {
        font-size: 2.2rem;
    }

    .home-feature-card {
        padding: 35px 25px;
    }

    .home-feature-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-section-title {
        font-size: 2rem;
    }

    .home-feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .home-feature-icon {
        font-size: 2.2rem;
    }

    .home-feature-icon-bg {
        width: 80px;
        height: 80px;
    }

    .home-feature-stats {
        padding: 12px 15px;
    }

    .home-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-section-title {
        font-size: 1.8rem;
    }

    .home-feature-card {
        padding: 25px 15px;
    }

    .home-feature-icon {
        font-size: 2rem;
    }

    .home-feature-title {
        font-size: 1.3rem;
    }

    .home-feature-description {
        font-size: 0.95rem;
    }
}


.country-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

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

.country-flag {
    width: 32px;
    margin-right: 10px;
}

.country-name {
    font-weight: 500;
    font-size: 1rem;
    flex-grow: 1;
}

.toggle-icon {
    font-size: 1rem;
    color: #777;
}

.show-more-btn {
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.show-more-btn:hover {
    background-color: #555;
}

.country-card {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #E6F0FF, #f0f4ff);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.country-card:active {
    animation: pulse 0.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
}

.step-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation: pulse 2.5s ease-in-out infinite;
    z-index: 1;
}

.step-icon {
    font-size: 3rem;
    color: #0056B3;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(4deg);
    color: #007BFF ;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px;
}

.step-desc {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.6;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.12;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
}

.testimonial-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-icon i {
    color: #0056B3;
}

.testimonial-text {
    font-size: 1rem;
    color: #495057;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-name {
    font-weight: 600;
    color: #343a40;
    font-size: 1rem;
}

/* Kart genel stil */
.testimonial-card {
    padding: 30px 25px;
    border-radius: 20px;
    color: #2c3e50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
    /* Varsayılan, özel renkler inline verilecek */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: none;
}

/* Hover animasyonu */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* İkon */
.testimonial-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Kart arka plan varyasyonları (isteğe göre arttırılabilir) */
.testimonial-card.bg-soft-1 {
    background: #e9f0ff;
}

.testimonial-card.bg-soft-2 {
    background: #f1e7ff;
}

.testimonial-card.bg-soft-3 {
    background: #ffeaea;
}

.testimonial-card.bg-soft-4 {
    background: #eafff3;
}

.testimonial-card.bg-soft-5 {
    background: #fff8e6;
}

.testimonial-card.bg-soft-6 {
    background: #f5f5f5;
}

/* Yazılar */
.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #343a40;
    line-height: 1.6;
}

.testimonial-name {
    margin-top: 15px;
    font-weight: 600;
    color: #343a40;
    font-size: 1rem;
}



.footer {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    color: #fff;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007BFF;
}

.social-icons a {
    display: inline-block;
    font-size: 1.3rem;
    color: #ccc;
    margin-right: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #007BFF;
}



.country-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.country-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.country-breadcrumb-item+.country-breadcrumb-item::before {
    content: ">";
    color: var(--text-muted);
}

.country-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 3rem 0;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.country-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: countryFloat 20s linear infinite;
}

@keyframes countryFloat {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(0deg);
    }

    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
    }
}

.country-flag {
    width: 64px;
    height: 64px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    border: 3px solid white;
}

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

.country-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.country-package-card.popular {
    border: 2px solid #007BFF;
    position: relative;
}

.country-package-card.popular::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #007BFF;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.country-package-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.country-package-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.country-package-body {
    padding: 2rem 1.5rem;
}

.country-package-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.country-package-info:last-child {
    border-bottom: none;
}

.country-package-info .icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007BFF;
    font-size: 1.1rem;
}

.country-package-info .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 1rem;
    flex-grow: 1;
}

.country-package-info .value {
    font-weight: 700;
    color: var(--text-dark);
}

.country-price {
    font-size: 2rem;
    font-weight: 800;
    color: #007BFF;
    text-align: center;
    margin: 1.5rem 0;
}

.country-btn-primary {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.country-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 54, 80, 0.3);
}

.country-btn-outline-primary {
    border: 2px solid #007BFF;
    color: #007BFF;
    background: transparent;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 60%;
    text-align: center;
    text-decoration: none;
}

.country-btn-outline-primary:hover {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border: 2px solid #FF6600;
    color: white;
    transform: translateY(-2px);
}

.country-filter {
    font-weight: 600;
    font-size: 18px;
    color: #007BFF;
}

.country-filter-icon {
    font-size: 24px;
}

.country-tabs {
    border: 0;
}

.country-tab-button {
    padding: 8px 20px !important;
    border-radius: 10px;
    background: transparent;
    color: #007BFF;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #007BFF;
    box-shadow: 0 0 15px 3px rgba(0, 123, 255, 0);
    transition: all 0.3s ease;
}

/* .popupModalButton{
    padding: 5px 10px !important;
    border-radius: 10px;
    background: transparent;
    color: #0056B3;
    font-weight: 600;
    font-size: 12px;
    border:2px solid #0056B3;
    box-shadow: 0 0 15px 3px rgba(102, 126, 234, 0);
    transition: all 0.3s ease;
}

.popupModalButton:hover{
    background: #0056B3;
    color: white;
    transform: translateY(-2px);
} */

.country-package-info-text {
    font-size: 14px;
    cursor: pointer;
    color: #3f3f3f;
}

.country-package-info-text:hover {
    color: #007BFF;
    text-decoration: underline;
}

@media(max-width: 768px) {
    .country-tab-button {
        font-size: 12px;
        padding: 5px 10px !important;
    }
}

.country-tab-item .active {
    background: #007BFF;
    color: white;
    box-shadow: 0 0 15px 3px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.country-tab-button:focus-visible {
    outline: none;
    border: 2px solid #007BFF;
}


.country-features-section {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.country-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.country-feature-item:hover {
    transform: translateX(10px);
    background: rgba(0, 123, 255, 0.1);
}

.country-feature-icon {
    width: 50px;
    height: 50px;
    background: #007BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 1rem;
}

.country-stats-section {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.country-stat-item {
    text-align: center;
    padding: 1rem;
}

.country-stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.country-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.country-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.country-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    border-radius: 2px;
}

.country-coverage-info {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
}

.country-coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .country-header {
        padding: 2rem 0;
    }

    .country-package-card {
        margin-bottom: 2rem;
    }

    .country-section-title {
        font-size: 2rem;
    }
}


.auth-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-header {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    color: white;
    position: relative;
}

.auth-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #0056B3;
}

.auth-logo {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.auth-logo i {
    font-size: 32px;
    color: white;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.auth-body {
    padding: 40px;
}

.auth-switch {
    display: flex;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 6px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-option {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.switch-option.active {
    color: white;
    transform: scale(1.02);
}

.switch-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #007BFF, #0056B3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.switch-slider.signin {
    transform: translateX(calc(100% + 6px));
}

.auth-form-container {
    position: relative;
    min-height: 550px;
}

.auth-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.auth-form.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.auth-form-group {
    margin-bottom: 20px;
    position: relative;
}

.auth-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.auth-form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.auth-form-control:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    background: white;
    outline: none;
}

.auth-form-control::placeholder {
    color: #adb5bd;
}

.auth-input-icon {
    position: absolute;
    right: 18px;
    top: 67%;
    transform: translateY(-50%);
    color: #007BFF;
    font-size: 18px;
    pointer-events: none;
}

.auth-password-toggle {
    position: absolute;
    right: 18px;
    top: 67%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
    padding: 0;
}

.auth-password-toggle:hover {
    color: #007BFF;
}

.auth-form-check {
    margin-bottom: 25px;
}

.auth-form-check-input {
    border-radius: 6px;
    border: 2px solid #e9ecef;
}

.auth-form-check-input:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

.auth-form-check-input[type=checkbox] {
    cursor: pointer;
}

.auth-form-check-label {
    font-size: 14px;
    color: #666;
}

.auth-form-check-label a {
    color: #007BFF;
    text-decoration: none;
}

.auth-form-check-label a:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-auth::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    color: white;
}

.btn-auth:active {
    transform: translateY(0);
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    background: #f6f7f7;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.social-auth {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px;
    background: white;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-social:hover {
    border-color: #007BFF;
    color: #007BFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-social i {
    font-size: 20px;
}

.auth-footer {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.auth-footer a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.auth-forgot-password a {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

.auth-forgot-password a:hover {
    text-decoration: underline;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 5%;
    animation-delay: 3s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .auth-section {
        padding: 60px 15px 20px;
    }

    .auth-container {
        max-width: 100%;
        margin: 0 10px;
    }

    .auth-header {
        padding: 30px 20px 15px;
    }

    .auth-body {
        padding: 30px 20px;
    }

    .auth-title {
        font-size: 24px;
    }

    .switch-option {
        padding: 12px 15px;
        font-size: 14px;
    }

    .social-auth {
        flex-direction: column;
    }

    .auth-form-container {
        min-height: 350px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-stat-content h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-stat-content p {
    margin: 0;
    opacity: 0.8;
}

.contact-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.contact-hero-card i {
    font-size: 4rem;
    color: #007BFF;
    margin-bottom: 20px;
}

.contact-hero-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero-card p {
    margin: 0;
    opacity: 0.8;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-method-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-method-link:hover {
    color: #0056B3;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

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

.contact-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.contact-form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    resize: vertical;
}

.contact-form-control:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    outline: none;
}

.contact-form-control::placeholder {
    color: #adb5bd;
}

.contact-input-icon {
    position: absolute;
    right: 18px;
    top: 67%;
    transform: translateY(-50%);
    color: #007BFF;
    font-size: 18px;
    pointer-events: none;
}

.contact-form-check {
    margin-bottom: 30px;
}

.contact-form-check-input {
    border-radius: 6px;
    border: 2px solid #e9ecef;
    cursor: pointer;
}

.contact-form-check-input:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

.contact-form-check-label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.contact-form-check-label a {
    color: #007BFF;
    text-decoration: none;
}

.contact-form-check-label a:hover {
    text-decoration: underline;
}

.contact-btn-primary {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border: none;
    border-radius: 12px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-btn-primary:hover::before {
    left: 100%;
}

.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    color: white;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-faq-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.contact-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.contact-faq-header-item {
    padding: 0;
}

.contact-faq-button {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.contact-faq-button:hover {
    background: #f8f9fa;
}

.contact-faq-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.contact-faq-body {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

/* Success Modal */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-stats {
        justify-content: center;
    }

    .contact-stat-item {
        flex-direction: column;
        text-align: center;
        min-width: 150px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .contact-faq-header h2,
    .contact-form-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

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

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

    .contact-hero-stats {
        gap: 15px;
    }

    .contact-stat-item {
        padding: 15px;
        min-width: 120px;
    }

    .contact-methods,
    .contact-form-section,
    .contact-faq {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-hero-card {
        padding: 30px 20px;
    }

    .contact-hero-card i {
        font-size: 3rem;
    }

    .contact-hero-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .contact-stat-item {
        width: 100%;
        max-width: 250px;
    }

    .contact-method-card {
        padding: 30px 20px;
    }

    .contact-faq-button {
        padding: 20px;
        font-size: 1rem;
    }

    .contact-faq-body {
        padding: 0 20px 20px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0056B3 0%, #007BFF  100%);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.about-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.about-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.about-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    width: 180px;
}

.about-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-visual-card.card-1 {
    top: 0;
    left: 0;
    animation: float 8s ease-in-out infinite;
}

.about-visual-card.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float2 8s ease-in-out infinite 2s;
}

.about-visual-card.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 8s ease-in-out infinite 4s;
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(-50%);

    }

    50% {
        transform: translateY(-60%);

    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);

    }

    50% {
        transform: translateX(-50%) translateY(-10%);

    }
}

.about-visual-card i {
    font-size: 2.5rem;
    color: #0056B3;
    margin-bottom: 15px;
}

.about-visual-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-visual-card p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* About Story */
.about-story {
    padding: 100px 0;
    background: white;
}

.about-story-content {
    background: white;
    padding: 50px 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px 3px #00000036;
}

.about-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.about-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-story-timeline {
    margin-top: 60px;
    position: relative;
}

.about-story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0056B3, #007BFF );
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 50px;
}

.timeline-year {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

/* Values Section */
.about-values {
    padding: 100px 0;
    background: #f8f9fa;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* Team Section */
.about-team {
    padding: 100px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

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

.team-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: white;
    color: #0056B3;
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.team-position {
    color: #0056B3;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mission Vision */
.about-mission {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

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

.mission-features,
.vision-goals {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-features li,
.vision-goals li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
}

.mission-features li i,
.vision-goals li i {
    color: #0056B3;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0056B3 0%, #007BFF  100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn-primary,
.about-btn-secondary {
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.about-btn-primary {
    background: white;
    color: #0056B3;
}

.about-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.about-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.about-btn-secondary:hover {
    background: white;
    color: #0056B3;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-stats {
        justify-content: center;
    }

    .about-stat-item {
        min-width: 130px;
    }

    .about-visual-card {
        width: 150px;
        padding: 20px;
    }

    .about-visual-card.card-1 {
        position: static;
        margin-bottom: 20px;
    }

    .about-visual-card.card-2 {
        position: static;
        margin-bottom: 20px;
        transform: none;
    }

    .about-visual-card.card-3 {
        position: static;
        transform: none;
    }

    .about-hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .about-story-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    .timeline-year {
        min-width: 60px;
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 80px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-hero-stats {
        gap: 20px;
    }

    .about-stat-item {
        min-width: 120px;
        padding: 25px 15px;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2.2rem;
    }

    .about-story,
    .about-values,
    .about-team,
    .about-mission,
    .about-cta {
        padding: 80px 0;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .about-stat-item {
        width: 100%;
        max-width: 200px;
    }

    .about-visual-card {
        width: 100%;
        max-width: 200px;
    }

    .timeline-item .timeline-content {
        padding-left: 60px !important;
    }

    .timeline-year {
        min-width: 50px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .team-image {
        height: 200px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, #0056B3 0%, #007BFF  100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.profile-avatar {
    position: relative;
}

.avatar-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.avatar-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

.avatar-status.online {
    background: #28a745;
}

.avatar-status.offline {
    background: #dc3545;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.profile-email {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.profile-member-since {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.profile-stats {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-stat-item {
    text-align: center;
    flex: 1;
}

.profile-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.profile-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Profile Content */
.profile-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.profile-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-menu {
    background: white;
    border-radius: 20px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background: #f8f9fa;
    color: #007BFF;
    border-left-color: #007BFF;
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    color: #007BFF;
    border-left-color: #007BFF;
}

.sidebar-item i {
    font-size: 1.2rem;
    width: 20px;
}

.sidebar-item span {
    font-weight: 500;
}

/* Profile Sections */
.profile-section {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.profile-section.active {
    display: block;
}

.profile-section-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.profile-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.profile-section-header p {
    color: #666;
    margin: 0;
}

/* Profile Form */
.profile-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

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

.profile-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.profile-form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
}

.profile-form-control:focus {
    border-color: #0056B3;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    outline: none;
}

.profile-form-control[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.profile-input-icon {
    position: absolute;
    right: 18px;
    top: 67%;
    transform: translateY(-50%);
    color: #0056B3;
    font-size: 18px;
    pointer-events: none;
}

.profile-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.profile-btn-edit,
.profile-btn-save,
.profile-btn-cancel {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.profile-btn-edit {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
}

.profile-btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px #ff853374;
}

.profile-btn-save {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.profile-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.profile-btn-cancel {
    background: #6c757d;
    color: white;
}

.profile-btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
}

.package-card.expired::before {
    background: #dc3545;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.package-country {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-flag {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.country-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.package-type {
    color: #fff;
    font-size: 0.9rem;
}

.package-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-status.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.package-status.expired {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.package-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.detail-item i {
    color: #0056B3;
    font-size: 1.1rem;
    width: 20px;
}

.package-actions {
    display: flex;
    gap: 12px;
}

.package-btn-primary,
.package-btn-secondary,
.package-btn-success {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.package-btn-primary {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
}

.package-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.package-btn-secondary {
    background: #6c757d;
    color: white;
}

.package-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.package-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.package-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* History Table */
.history-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    border-color: #0056B3;
}

.filter-search {
    position: relative;
}

.search-input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    width: 250px;
}

.search-input:focus {
    border-color: #0056B3;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.filter-search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.history-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.table {
    margin: 0;
}

.table th {
    background: #f8f9fa;
    border: none;
    padding: 20px 15px;
    font-weight: 600;
    color: #333;
}

.table td {
    border: none;
    padding: 20px 15px;
    vertical-align: middle;
}

.package-info strong {
    display: block;
    color: #333;
    font-weight: 600;
}

.package-info small {
    color: #666;
    font-size: 0.85rem;
}

.country-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-flag {
    font-size: 1.5rem;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.expired {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: none;
    background: #f8f9fa;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-action:hover {
    background: #007BFF;
    color: white;
    transform: translateY(-2px);
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.setting-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.setting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.setting-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.setting-header i {
    font-size: 1.5rem;
    color: #0056B3;
}

.setting-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.setting-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.setting-btn {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.setting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.setting-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: #007BFF;
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-weight: 500;
    color: #666;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

.support-btn {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 2px solid #f8f9fa;
    padding: 25px 30px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.btn:hover {
    color: white !important;
}

.btn-close {
    color: white !important;
}

.package-detail-content {
    height: 100%;

}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.detail-country {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-flag-large {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-stats .detail-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.detail-stats .detail-stat-item i {
    font-size: 1.5rem;
    color: #0056B3;
}

.detail-stat-info {
    display: flex;
    flex-direction: column;
}

.detail-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.detail-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.detail-chart {
    margin-bottom: 30px;
}

.detail-chart h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.usage-chart {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.chart-bar {
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-radius: 10px;
    transition: width 0.3s ease;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.detail-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn-primary,
.modal-btn-secondary {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.modal-btn-secondary {
    background: #6c757d;
    color: white;
}

.modal-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .profile-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .profile-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        gap: 10px;
    }

    .sidebar-item {
        white-space: nowrap;
        min-width: 150px;
        justify-content: center;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .sidebar-item:hover,
    .sidebar-item.active {
        border-left: none;
        border-bottom-color: #0056B3;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-header {
        padding: 80px 0 60px;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .profile-content {
        padding: 60px 0;
    }

    .profile-section {
        padding: 30px 20px;
    }

    .profile-form-container {
        padding: 25px;
    }

    .history-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .package-actions {
        flex-direction: column;
    }

    .detail-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .avatar-image {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .profile-stats {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .detail-stats {
        grid-template-columns: 1fr;
    }

    .detail-country {
        flex-direction: column;
        text-align: center;
    }

    .country-flag-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Package Detail Page Styles */
.package-breadcrumb {
    margin-top: 100px;
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #0056B3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: #007BFF ;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.package-header {
    padding: 80px 20px;
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.package-header::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="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.package-title-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.package-flag {
    position: relative;
    flex-shrink: 0;
}

.flag-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: flagFloat 3s ease-in-out infinite;
}

@keyframes flagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.flag-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    color: #0056B3;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.package-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.package-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: default;
}

.feature-tag-url {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0);
}

.feature-tag-url:hover {
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.2);
}

.package-price-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0056B3, #007BFF );
}

.price-header {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #0056B3;
    display: block;
    margin-bottom: 10px;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.price-details {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item i {
    color: #0056B3;
    font-size: 1.2rem;
}

.btn-purchase {
    width: 100%;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.package-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.detail-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
    position: relative;
}

.detail-header h3 {
    color: #333;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.detail-header h3 i {
    color: #0056B3;
    font-size: 1.8rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.8rem;
    color: #0056B3;
}

.spec-info h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.spec-info span {
    color: #0056B3;
    font-weight: 700;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.package-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-feature-item:hover {
    background: white;
    border-color: #007BFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

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

.coverage-map {
    text-align: center;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px dashed #0056B3;
}

.map-placeholder i {
    font-size: 4rem;
    color: #0056B3;
    margin-bottom: 20px;
}

.map-placeholder h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-placeholder p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: flex-start;
}

.coverage-stats span {
    text-align: left;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
}

.coverage-icon {
    font-size: 2rem;
    color: #0056B3;

}

.coverage-line {
    border-bottom: 2px solid #0056B3;
    width: 90%;
    margin: 20px auto;
}

.coverage-stats .coverage-stat-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.coverage-stats .coverage-stat-item:hover {
    border-color: #0056B3;
    transform: translateY(-3px);
}

.coverage-stats .coverage-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.coverage-stats .coverage-stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.coverage-stats .coverage-stat-info h6 {
    color: #0056B3;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.coverage-stats .coverage-stat-info span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.installation-steps {
    position: relative;
}

.installation-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0056B3, #007BFF );
    z-index: 0;
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    z-index: 1;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.step-content h6 {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
}

.purchase-summary {
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: #666;
}

.summary-item span:last-child {
    font-weight: 600;
    color: #333;
}

.summary-item .discount {
    color: #28a745;
    font-weight: 700;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0056B3;
    padding-top: 15px;
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-add-cart,
.btn-buy-now {
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-add-cart {
    background: #f8f9fa;
    color: #0056B3;
    border: 2px solid #0056B3;
}

.btn-add-cart:hover {
    background: #0056B3;
    color: white;
    transform: translateY(-2px);
}

.btn-buy-now {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
}

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

.btn-buy-now:hover::before {
    left: 100%;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.purchase-benefits {
    border-top: 1px solid #f1f3f5;
    padding-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
}

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

.benefit-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.similar-packages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-package-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.similar-package-item:hover {
    background: white;
    border-color: #007BFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
}

.package-flag-small {
    flex-shrink: 0;
}

.package-flag-small img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 6px;
}

.package-info-small {
    flex: 1;
}

.package-info-small h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.package-price-small {
    color: #007BFF;
    font-weight: 700;
    font-size: 1rem;
}

.btn-view-small {
    background: #007BFF;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-view-small:hover {
    background: #0056B3;
    transform: translateY(-1px);
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-option:hover {
    background: white;
    border-color: #007BFF;
    color: #007BFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
    text-decoration: none;
}

.support-option i:first-child {
    font-size: 1.3rem;
    color: #007BFF;
}

.support-option span {
    flex: 1;
    font-weight: 600;
}

.support-option i:last-child {
    font-size: 1rem;
    opacity: 0.7;
}

.reviews-section {
    padding: 80px 0;
    background: white;
}

.package-section-header {
    margin-bottom: 60px;
}

.package-section-header h2 {
    color: #333;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.package-section-header p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    background: white;
    border-color: #0056B3;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.reviewer-details h6 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 1rem;
}

.reviewer-details span {
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-content p {
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.review-date span {
    color: #999;
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    border-radius: 15px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    padding: 25px 30px;
    border-top: 1px solid #e9ecef;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Package Detail */
@media (max-width: 992px) {
    .package-title-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .package-title {
        font-size: 2.5rem;
    }

    .flag-img {
        width: 100px;
        height: 75px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .installation-steps::before {
        display: none;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .package-breadcrumb {
        margin-top: 80px;
    }

    .package-header {
        padding: 60px 0;
    }

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

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

    .package-price-card {
        margin-top: 30px;
        padding: 30px;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .package-details-section {
        padding: 60px 0;
    }

    .detail-card {
        padding: 25px;
    }

    .spec-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
    }

    .reviews-section,
    .faq-section {
        padding: 60px 0;
    }

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

    .purchase-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .package-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-tag {
        width: 100%;
        justify-content: center;
    }

    .flag-img {
        width: 80px;
        height: 60px;
    }

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

    .current-price {
        font-size: 2rem;
    }

    .detail-card {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .package-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .similar-package-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .btn-view-small {
        width: 100%;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sidebar-card {
        padding: 20px;
    }
}

/* ===== CART PAGE STYLES ===== */

/* Cart Breadcrumb */
.cart-breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.cart-breadcrumb .breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.cart-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #0056B3;
    font-weight: 600;
}

.cart-breadcrumb .breadcrumb-item a {
    color: #0056B3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-breadcrumb .breadcrumb-item a:hover {
    color: #007BFF ;
}

.cart-breadcrumb .breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

/* Cart Section */
.cart-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

/* Cart Header */
.cart-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.cart-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.cart-header h2 i {
    margin-right: 10px;
    font-size: 2.2rem;
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Cart Item */
.cart-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.cart-item:hover::before {
    left: 100%;
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
    border-color: #007BFF;
}

.cart-item-image {
    flex-shrink: 0;
}

.cart-item-image .country-flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    position: relative;
    overflow: hidden;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.cart-item-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cart-item-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-feature-badge {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-feature-badge i {
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    height: 35px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.cart-item-price {
    text-align: right;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    display: block;
}

.current-price {
    color: #007BFF;
    font-size: 2rem;
    font-weight: 700;
}

.cart-remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-remove-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Continue Shopping */
.cart-continue-shopping {
    margin-top: 30px;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.continue-shopping-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cart Summary */
.cart-summary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    /* position: sticky;
    top: 20px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cart-summary-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 20px;
}

.cart-summary-header h4 {
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-summary-body {
    padding: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.cart-subtotal,
.cart-tax,
.cart-total {
    font-weight: 600;
}

.cart-discount {
    font-weight: 600;
}

/* Promo Code Section */
.cart-promo-section {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.cart-promo-section h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-promo-section .input-group input {
    border: 2px solid #dee2e6;
    border-radius: 10px 0 0 10px;
    padding: 12px 15px;
}

.cart-promo-section .input-group button {
    border: 2px solid #007BFF;
    border-left: none;
    border-radius: 0 10px 10px 0;
    background: #007BFF;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-promo-section .input-group button:hover {
    background: #0056B3;
    border-color: #0056B3;
}

.promo-message {
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-message.success {
    color: #28a745;
}

.promo-message.error {
    color: #dc3545;
}

/* Checkout Button */
.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    margin: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.cart-checkout-btn:hover::before {
    left: 100%;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.3);
}

.checkout-amount {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 10px;
    margin-left: 10px;
}

/* Security Info */
.cart-security-info {
    padding: 0 25px 25px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.security-item i {
    color: #007BFF;
    font-size: 1.1rem;
}

/* Recommendations */
.cart-recommendations {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cart-recommendations h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-recommendations h5 i {
    color: #FF6600;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    border-color: #007BFF;
    background: #E6F0FF;
}

.rec-flag {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #007BFF, #0056B3);
}

.rec-details {
    flex: 1;
}

.rec-details h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.rec-details p {
    margin: 0;
    color: #007BFF;
    font-weight: 600;
}

.rec-add-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rec-add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    border: none;
    padding: 20px 30px;
}

.modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-control {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* Checkout Summary in Modal */
.checkout-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.checkout-summary h6 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.checkout-items {
    margin-bottom: 15px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.checkout-item span:first-child {
    color: #666;
}

.checkout-item span:last-child {
    font-weight: 600;
    color: #333;
}

.checkout-total {
    color: #333;
    font-size: 1.1rem;
}

/* Success Modal */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPulse 2s infinite;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.order-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.order-details p {
    margin: 5px 0;
    color: #666;
}

/* Cart Responsive */
@media (max-width: 992px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cart-item-controls {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .cart-header {

        gap: 15px;
        text-align: center;
    }

    .cart-summary {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 40px 0;
    }

    .cart-header h2 {
        font-size: 1.5rem;
    }

    .cart-header h2 i {
        font-size: 1.7rem;
    }

    .cart-item {
        padding: 20px;
    }

    .cart-item-image .country-flag {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .cart-item-title {
        font-size: 1.1rem;
    }

    .cart-item-features {
        justify-content: center;
    }

    .cart-feature-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .modal-body {
        padding: 20px;
    }

    .recommendation-item {
        padding: 12px;
    }

    .rec-flag {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .cart-breadcrumb {
        padding: 15px 0;
    }

    .cart-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .cart-item-controls {
        flex-direction: column;
        gap: 10px;
    }

    .cart-quantity {
        order: 2;
    }

    .cart-item-price {
        order: 1;
        text-align: center;
    }

    .cart-remove-btn {
        order: 3;
        align-self: center;
    }

    .cart-checkout-btn {
        font-size: 1rem;
        padding: 15px;
    }

    .continue-shopping-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Cart Animation Classes */
.cart-item-remove {
    animation: cartItemRemove 0.5s ease forwards;
}

@keyframes cartItemRemove {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.cart-item-add {
    animation: cartItemAdd 0.5s ease forwards;
}

@keyframes cartItemAdd {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-quantity-change {
    animation: quantityBounce 0.3s ease;
}

@keyframes quantityBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cart-price-update {
    animation: priceGlow 0.8s ease;
}

@keyframes priceGlow {

    0%,
    100% {
        color: #0056B3;
    }

    50% {
        color: #28a745;
        text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    }
}

/* ===== CART FINISH PAGE STYLES ===== */

/* Cart Finish Hero Section */
.cart-finish-hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cart-finish-hero::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"><defs><pattern id="success-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23success-pattern)"/></svg>');
    pointer-events: none;
}

.cart-finish-success-icon {
    position: relative;
    margin-bottom: 40px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: checkmarkBounce 1s ease-out;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.success-checkmark i {
    font-size: 4rem;
    color: white;
    animation: checkmarkScale 0.8s ease-out 0.2s both;
}

@keyframes checkmarkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkScale {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.success-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 2s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.3s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.6s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.9s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: 1.2s;
}

.particle:nth-child(6) {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.7;
    }
}

.cart-finish-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-finish-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cart-finish-order-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.order-number,
.order-date {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.order-number i,
.order-date i {
    font-size: 1.2rem;
}

/* Cart Finish Details Section */
.cart-finish-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cart-finish-summary-card,
.cart-finish-payment-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.cart-finish-summary-card .card-header,
.cart-finish-payment-card .card-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 20px;
    border: none;
}

.cart-finish-summary-card .card-header h4,
.cart-finish-payment-card .card-header h4 {
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-finish-summary-card .card-body,
.cart-finish-payment-card .card-body {
    padding: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-flag {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #0056B3, #007BFF );
}

.item-details h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.item-details span {
    color: #666;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 700;
    color: #0056B3;
    font-size: 1.1rem;
}

.summary-totals {
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.total-row.discount {
    color: #28a745;
}

.total-row.final {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    padding-top: 15px;
    border-top: 2px solid #0056B3;
}

/* Payment Info Styles */
.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.method-details {
    flex: 1;
}

.method-details h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.method-details span {
    color: #666;
    font-size: 0.9rem;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.success {
    background: #28a745;
    color: white;
}

.status-badge.ready {
    background: #17a2b8;
    color: white;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.detail-item span:first-child {
    color: #666;
}

.detail-item span:last-child {
    font-weight: 600;
    color: #333;
}

/* QR Codes Section */
.cart-finish-qr-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cart-finish-qr-section {
        padding: 30px 5px !important;
    }
}

.cart-finish-qr-section .section-header {
    margin-bottom: 40px;
}

.cart-finish-qr-section .section-header h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-finish-qr-section .section-header p {
    color: #666;
    margin: 0;
}

.qr-codes-grid {
    display: grid;
    gap: 30px;
}

.qr-code-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qr-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.qr-code-card:hover {
    border-color: #0056B3;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.qr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #0056B3, #007BFF );
}

.country-details h5 {
    margin: 0 0 5px 0;
    font-weight: 700;
    color: #333;
}

.country-details span {
    color: #666;
    font-size: 0.9rem;
}

.qr-status {
    display: flex;
    align-items: center;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 25px;
}

.qr-code-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 160px;
    height: 160px;
    position: relative;
    background: linear-gradient(45deg, #0056B3, #007BFF );
    border-radius: 10px;
    opacity: 0.8;
}

.qr-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
}

.qr-corner.tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.qr-corner.tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.qr-corner.bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.qr-corner.br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.qr-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotPulse 2s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.dot:nth-child(4) {
    animation-delay: 0.6s;
}

.dot:nth-child(5) {
    animation-delay: 0.8s;
}

.dot:nth-child(6) {
    animation-delay: 1s;
}

.dot:nth-child(7) {
    animation-delay: 1.2s;
}

.dot:nth-child(8) {
    animation-delay: 1.4s;
}

.dot:nth-child(9) {
    animation-delay: 1.6s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.qr-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-download,
.btn-share {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-share {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.qr-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.info-item i {
    color: #0056B3;
}

/* Installation Guide Section */
.cart-finish-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cart-finish-guide .section-header h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-finish-guide .section-header p {
    color: #666;
    margin: 0;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: space-between;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-details {
    flex: 1;
}

.step-details h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-details p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-tips {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tip {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0056B3;
    font-size: 0.9rem;
    font-weight: 500;
}

.tip i {
    font-size: 1rem;
}

/* Email Confirmation Section */
.cart-finish-email {
    padding: 60px 0;
    background: white;
}

.email-confirmation-card {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.email-confirmation-card::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"><defs><pattern id="email-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23email-pattern)"/></svg>');
    pointer-events: none;
}

.email-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: emailPulse 2s infinite ease-in-out;
}

@keyframes emailPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.email-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.email-content h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.email-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.email-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-resend,
.btn-print {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-resend:hover,
.btn-print:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.email-status {
    position: relative;
    z-index: 2;
}

.status-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.status-indicator.success {
    background: #28a745;
    color: white;
}

/* Action Buttons Section */
.cart-finish-actions {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: white;
}

.action-buttons .btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.action-buttons .btn-secondary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.action-buttons .btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Support Section */
.cart-finish-support {
    padding: 80px 0;
    background: white;
}

.support-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.support-content h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.support-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.support-btn {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cart-finish-title {
        font-size: 2.5rem;
    }

    .cart-finish-order-info {
        flex-direction: column;
        gap: 20px;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
    }

    .qr-info {
        flex-direction: column;
        gap: 10px;
    }

    .email-confirmation-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cart-finish-hero {
        padding: 60px 0;
    }

    .cart-finish-title {
        font-size: 2rem;
    }

    .cart-finish-subtitle {
        font-size: 1.1rem;
    }

    .success-checkmark {
        width: 100px;
        height: 100px;
    }

    .success-checkmark i {
        font-size: 3rem;
    }

    .cart-finish-details,
    .cart-finish-guide,
    .cart-finish-support {
        padding: 60px 0;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .qr-code-placeholder {
        width: 150px;
        height: 150px;
    }

    .qr-pattern {
        width: 120px;
        height: 120px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn-primary,
    .action-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cart-finish-hero {
        padding: 40px 0;
    }

    .cart-finish-title {
        font-size: 1.8rem;
    }

    .order-number,
    .order-date {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .step-card {
        padding: 20px;
    }

    .step-tips {
        font-size: 0.8rem;
    }

    .email-confirmation-card {
        padding: 25px;
    }

    .email-actions {
        flex-direction: column;
    }

    .btn-resend,
    .btn-print {
        width: 100%;
        justify-content: center;
    }

    .support-card {
        padding: 25px;
    }

    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.cart-finish-fade-in {
    animation: cartFinishFadeIn 0.8s ease-out;
}

@keyframes cartFinishFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-finish-slide-up {
    animation: cartFinishSlideUp 0.6s ease-out;
}

@keyframes cartFinishSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-finish-bounce {
    animation: cartFinishBounce 0.8s ease-out;
}

@keyframes cartFinishBounce {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* ===================================
   LANGUAGE DROPDOWN STYLES
   =================================== */
.language-dropdown {
    position: relative;
}

.language-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #007BFF;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 80px;
}

.language-dropdown .nav-link:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: #007BFF;
    color: #007BFF;
}

.language-dropdown .language-text {
    font-weight: 600;
    font-size: 13px;
}

.language-dropdown .dropdown-menu {
    min-width: 220px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    background: white;
    overflow: hidden;
}

.language-dropdown .dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.language-dropdown .dropdown-item:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007BFF;
    transform: translateX(4px);
}

.language-dropdown .dropdown-item.active {
    background: rgba(0, 123, 255, 0.15);
    color: #007BFF;
    font-weight: 600;
}

.language-dropdown .language-icon {
    width: 18px;
    height: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007BFF;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .language-dropdown {
        margin-left: 0;
    }

    .language-dropdown .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .language-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(102, 126, 234, 0.2);
        margin-top: 8px;
        width: 100%;
        min-width: auto;
    }
}

/* Döviz Kuru Seçeneği Animasyonları
.currency-dropdown .dropdown-item {
    position: relative;
    overflow: hidden;
}

.currency-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.currency-dropdown .dropdown-item:hover::before {
    left: 100%;
}

.currency-dropdown .nav-link i:last-child {
    transition: transform 0.3s ease;
}

.currency-dropdown:hover .nav-link i:last-child {
    transform: rotate(180deg);
}

/* Döviz Kuru Seçeneği Özel Efektler */
/* .currency-dropdown .currency-icon {
    position: relative;
    z-index: 1;
}

.currency-dropdown .dropdown-item:hover .currency-icon {
    animation: currencyPulse 0.6s ease-in-out;
}  */


/* Döviz Kuru Seçeneği Stilleri */
.currency-dropdown {
    position: relative;
}

.currency-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #007BFF;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 80px;
}

.currency-dropdown .nav-link:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: #007BFF;
    color: #007BFF;
}


.currency-dropdown .dropdown-menu {
    min-width: 220px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    background: white;
    overflow: hidden;
}

.currency-dropdown .dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.currency-dropdown .dropdown-item:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007BFF;
    transform: translateX(4px);
}

.currency-dropdown .dropdown-item.active {
    background: rgba(0, 123, 255, 0.15);
    color: #007BFF;
    font-weight: 600;
}

.currency-dropdown .currency-icon {
    width: 18px;
    height: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007BFF;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .currency-dropdown {
        margin-left: 0;
    }

    .currency-dropdown .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .currency-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(102, 126, 234, 0.2);
        margin-top: 8px;
        width: 100%;
        min-width: auto;
    }
}



.nav-link i:last-child {
    transition: transform 0.3s ease;
}

.nav-link:hover i:last-child {
    transform: rotate(180deg);
}



/* ===================================
   BLOG DETAIL PAGE STYLES
   =================================== */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, #0056B3 0%, #007BFF );
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.blog-breadcrumb {
    position: relative;
    z-index: 2;
}

.blog-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
    content: "›";
}

.blog-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Blog Content Section */
.blog-content-section {
    background: #f8f9fa;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    animation: blogFadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.sidebar-widget:nth-child(1) {
    animation-delay: 0.1s;
}

.sidebar-widget:nth-child(2) {
    animation-delay: 0.2s;
}

.sidebar-widget:nth-child(3) {
    animation-delay: 0.3s;
}

.sidebar-widget:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes blogFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget-title {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0056B3;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #007BFF ;
    border-radius: 2px;
}

/* Search Widget */
.search-form {
    position: relative;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
    border: none;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 25px 0 0 25px;
    outline: none;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    background: #fff;
    box-shadow: none;
    border-color: transparent;
}

.search-btn {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border: none;
    padding: 12px 20px;
    color: #fff;
    border-radius: 0 25px 25px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: scale(1.05);
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.category-item:hover {
    color: #0056B3;
    padding-left: 10px;
}

.category-item.active {
    color: #0056B3;
    font-weight: 600;
}

.category-item span {
    background: #e9ecef;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.category-item.active span {
    background: #0056B3;
    color: #fff;
}

/* Recent Posts Widget */
.recent-posts-list {
    padding: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-title a:hover {
    color: #0056B3;
}

.recent-post-date {
    font-size: 12px;
    color: #6c757d;
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tag-item:hover {
    background: #0056B3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Main Blog Post */
.blog-post-detail {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: blogSlideInRight 0.8s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes blogSlideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Post Header */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    color: #0056B3;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c3e50, #0056B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.post-featured-image:hover img {
    transform: scale(1.05);
}

/* Post Content */
.post-content {
    line-height: 1.8;
    color: #495057;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.post-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    border-left: 4px solid #0056B3;
    margin-bottom: 30px;
}

.content-section h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 1.6rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f1f3f5;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #0056B3;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1), rgba(13, 110, 253, 0.1));
    border: 1px solid rgba(13, 202, 240, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: blogPulse 2s infinite;
}

@keyframes blogPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.info-box-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-box-content h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-box-content p {
    margin: 0;
    color: #495057;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /* margin: 0 auto 15px; */
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1), rgba(102, 126, 234, 0.1));
    border-left: 4px solid #007BFF ;
    border-radius: 0 15px 15px 0;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: rgba(118, 75, 162, 0.2);
    font-family: serif;
    line-height: 1;
}

.quote-box blockquote {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}

.quote-box cite {
    color: #0056B3;
    font-weight: 600;
    font-style: normal;
}

/* Advantage Items */
.advantage-item {
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-item h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advantage-item h5 i {
    color: #28a745;
    font-size: 18px;
}

.advantage-item p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}

/* Post Footer */
.post-footer {
    border-top: 2px solid #f1f3f5;
    padding-top: 30px;
}

.post-tags h6,
.social-share h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-tags .tag-item {
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Social Share */
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy-link {
    background: #6c757d;
}

.share-btn.facebook:hover {
    background: #155bb5;
}

.share-btn.twitter:hover {
    background: #1a91da;
}

.share-btn.linkedin:hover {
    background: #005582;
}

.share-btn.whatsapp:hover {
    background: #1ebe57;
}

.share-btn.copy-link:hover {
    background: #545b62;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.nav-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* .nav-link {
    display: block;
    padding: 20px;
    color: inherit;
    text-decoration: none;
} */

.nav-direction {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0056B3;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.next-post .nav-direction {
    justify-content: flex-end;
}

.nav-item h6 {
    color: #2c3e50;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.next-post {
    text-align: right;
}

/* Comments Section */
.comments-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.comments-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
}

/* Comment Items */
.comments-list {
    margin-bottom: 40px;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f1f3f5;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.comment-author {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.comment-date {
    color: #6c757d;
    font-size: 14px;
}

.comment-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: #0056B3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-reply-btn:hover {
    color: #5a6fd8;
}

/* Comment Form */
.comment-form {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.form-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
}

.comment-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.comment-form .form-control:focus {
    border-color: #0056B3;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

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

.comment-submit-btn {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-submit-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Related Posts Section */
.related-posts-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Related Post Cards */
.related-post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #0056B3, #007BFF );
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.related-post-content {
    padding: 25px;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #6c757d;
}

.related-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-title a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.related-post-title a:hover {
    color: #0056B3;
}

.related-post-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
}

.read-more {
    color: #0056B3;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #5a6fd8;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .sidebar-widget {
        margin-bottom: 20px;
    }

    .blog-post-detail {
        padding: 30px 20px;
    }

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

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post .nav-direction {
        justify-content: flex-start;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .post-meta {
        /* flex-direction: column; */
        gap: 10px;
    }

    .meta-item {
        font-size: 13px;
    }

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

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

    .comment-form {
        padding: 20px;
    }

    .related-post-content {
        padding: 20px;
    }

    .blog-post-detail {
        padding: 20px 15px;
    }

    .comments-section {
        padding: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .blog-breadcrumb .breadcrumb {
        padding: 10px 16px;
        font-size: 14px;
    }

    .post-featured-image img {
        height: 250px;
    }

    .comment-item {
        flex-direction: column;
        gap: 15px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* =================================
   Blog Page Styles
   ================================= */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    color: white;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.3;
    animation: blog-float 20s ease-in-out infinite;
}

@keyframes blog-float {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(10px) translateY(-10px);
    }

    50% {
        transform: translateX(-5px) translateY(-15px);
    }

    75% {
        transform: translateX(-10px) translateY(-5px);
    }
}

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

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-gradient-text {
    background: linear-gradient(45deg, #fff 0%, #e0e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-search {
    max-width: 500px;
    margin: 0 auto;
}

.blog-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-search-container:focus-within {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-search-icon {
    position: absolute;
    left: 20px;
    font-size: 18px;
    opacity: 0.7;
    z-index: 1;
}

.blog-search-input {
    flex: 1;
    padding: 15px 20px 15px 50px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
}

.blog-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-search-btn {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.blog-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.blog-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.blog-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: blog-decorations 15s ease-in-out infinite;
}

.blog-decoration-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.blog-decoration-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.blog-decoration-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes blog-decorations {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(20px, -20px) scale(1.2);
        opacity: 0.1;
    }
}

/* Blog Content Section */
.blog-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Blog Filters */
.blog-filters-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.blog-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-filters-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.blog-view-toggle {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 10px;
}

.blog-view-btn {
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.blog-view-btn.active,
.blog-view-btn:hover {
    background: #0056B3;
    color: white;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    border-color: #007BFF;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Featured Post */
.blog-featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.blog-featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-featured-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-post:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-featured-content {
    padding: 30px;
}

.blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-featured-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-featured-title a:hover {
    color: #0056B3;
}

.blog-featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
}

.blog-author-name {
    font-weight: 600;
    color: #333;
}

.blog-author-title {
    font-size: 12px;
    color: #666;
}

.blog-stats {
    display: flex;
    gap: 15px;
}

.blog-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-post-card:hover .blog-post-overlay {
    opacity: 1;
}

.blog-read-more {
    background: white;
    color: #007BFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.blog-post-card:hover .blog-read-more {
    transform: scale(1);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-category {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.blog-category-esim {
    background: rgba(102, 126, 234, 0.1);
    color: #0056B3;
}

.blog-category-guide {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.blog-category-travel {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.blog-category-news {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.blog-category-tips {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
}

.blog-post-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #007BFF;
}

.blog-post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.blog-author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-author-mini img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-mini span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.2rem;
    }

    .blog-filters-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/* Blog Sidebar Widgets */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.blog-sidebar-widget {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-widget-header {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 20px 25px;
}

.blog-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-widget-content {
    padding: 25px;
}

/* Newsletter Widget */
.blog-newsletter-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-newsletter-form {
    margin-bottom: 15px;
}

.blog-newsletter-input-group {
    position: relative;
    display: flex;
    margin-bottom: 10px;
}

.blog-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px 0 0 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

.blog-newsletter-input:focus {
    border-color: #0056B3;
}

.blog-newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border: none;
    border-radius: 0 10px 10px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-newsletter-btn:hover {
    transform: scale(1.05);
}

.blog-newsletter-privacy {
    color: #888;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Popular Posts Widget */
.blog-popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-popular-post {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.blog-popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-popular-image {
    flex-shrink: 0;
}

.blog-popular-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-popular-content {
    flex: 1;
}

.blog-popular-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-popular-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-popular-title a:hover {
    color: #0056B3;
}

.blog-popular-meta {
    display: flex;
    gap: 15px;
}

.blog-popular-date,
.blog-popular-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
}

/* Categories Widget */
.blog-categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    background: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-category-item:hover {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    transform: translateX(5px);
}

.blog-category-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.blog-category-count {
    background: #e9ecef;
    color: #666;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-category-item:hover .blog-category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Tags Widget */
.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-item {
    padding: 8px 15px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-tag-item:hover {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    transform: translateY(-2px);
}

/* Social Widget */
.blog-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.blog-social-link i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-social-facebook {
    border-color: #1877f2;
}

.blog-social-facebook:hover {
    background: #1877f2;
    color: white;
}

.blog-social-facebook i {
    background: #1877f2;
}

.blog-social-twitter {
    border-color: #1da1f2;
}

.blog-social-twitter:hover {
    background: #1da1f2;
    color: white;
}

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

.blog-social-instagram {
    border-color: #e1306c;
}

.blog-social-instagram:hover {
    background: #e1306c;
    color: white;
}

.blog-social-instagram i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.blog-social-youtube {
    border-color: #ff0000;
}

.blog-social-youtube:hover {
    background: #ff0000;
    color: white;
}

.blog-social-youtube i {
    background: #ff0000;
}

.blog-social-info {
    flex: 1;
    color: inherit;
}

.blog-social-name {
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.blog-social-count {
    color: #666;
    font-size: 13px;
}

.blog-social-link:hover .blog-social-count {
    color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.blog-pagination-section {
    padding: 40px 0;
    background: white;
}

.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.blog-pagination-info {
    color: #666;
    font-size: 14px;
}

.blog-pagination-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-pagination-item {
    display: flex;
}

.blog-pagination-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-pagination-link:hover {
    border-color: #0056B3;
    background: #0056B3;
    color: white;
    transform: translateY(-2px);
}

.blog-pagination-item.active .blog-pagination-link {
    background: linear-gradient(135deg, #0056B3, #007BFF );
    border-color: #0056B3;
    color: white;
}

.blog-pagination-item.disabled .blog-pagination-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-pagination-dots {
    padding: 10px 5px;
    color: #666;
}

/* Search Suggestions */
.blog-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

.blog-search-suggestion {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.3s ease;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-search-suggestion:hover {
    background: #f8f9fa;
}

.blog-search-suggestion:last-child {
    border-bottom: none;
}

/* Loading Animation */
.blog-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: blog-spin 1s ease-in-out infinite;
}

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

/* Load More Button */
.blog-load-more-container {
    text-align: center;
}

.blog-load-more-btn {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* Additional Responsive Styles */
@media (max-width: 1200px) {
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .blog-hero-title {
        font-size: 2.8rem;
    }

    .blog-hero-section {
        padding: 120px 0 80px;
    }

    .blog-content-section {
        padding: 60px 0;
    }

    .blog-filters {
        justify-content: center;
    }

    .blog-pagination {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-featured-post {
        margin-bottom: 30px;
    }

    .blog-featured-content {
        padding: 20px;
    }

    .blog-featured-title {
        font-size: 1.5rem;
    }

    .blog-featured-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-widget-content {
        padding: 20px;
    }

    .blog-newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .blog-newsletter-input,
    .blog-newsletter-btn {
        border-radius: 10px;
    }

    .blog-pagination-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-hero-section {
        padding: 100px 0 60px;
    }

    .blog-hero-title {
        font-size: 1.8rem;
    }

    .blog-filters-container {
        padding: 20px;
    }

    .blog-filter-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .blog-featured-image {
        height: 250px;
    }

    .blog-post-image {
        height: 180px;
    }

    .blog-popular-post {
        flex-direction: column;
        text-align: center;
    }

    .blog-social-link {
        padding: 12px;
    }
}

.device-brand-group {
    margin-bottom: 1.5rem;
}

.brand-header {
    background: linear-gradient(135deg, #0056B3 0%, #007BFF  100%);
    color: white;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.device-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.device-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.device-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 14px;
}

.device-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.device-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.brand-badge {
    background: #e3f2fd;
    color: #1976d2;
}

.os-badge {
    background: #f3e5f5;
    color: #7b1fa2;
}

.model-badge {
    background: #e8f5e8;
    color: #388e3c;
}

.no-devices-found {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.brand-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
}

#deviceSearch {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 10px 15px;
}

#deviceSearch:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.modal-body {
    max-height: 70vh;
}