/* Page Hero */
.page-hero {
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
    padding: 120px 0 80px;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 25px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a237e 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.section-padding {
    padding: 80px 0;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h5 {
    color: #667eea;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* Features Section */
.features-section {
    background: #fff;
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

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

.about-image {
    display: flex;
    justify-content: center;
}

.gradient-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.gradient-box i {
    font-size: 60px;
    margin-bottom: 20px;
}

.gradient-box h3 {
    font-size: 24px;
    font-weight: 700;
}

.about-text h5 {
    color: #667eea;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.video-icon {
    margin-bottom: 30px;
}

.video-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #667eea;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s;
}

.video-icon a:hover {
    transform: scale(1.1);
}

.video-section h2 {
    font-size: 32px;
    font-weight: 700;
}

.video-section h2 span {
    color: #667eea;
}

/* News Section */
.news-section {
    background: #fff;
}

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

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.news-content p {
    color: #666;
    font-size: 14px;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 50px 0;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-content img {
    max-width: 300px;
    border-radius: 8px;
}

.promo-text h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

/* Hot VPN Section */
.hot-vpn-section {
    background: #f8f9fa;
}

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

.hot-vpn-card {
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
}

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

.hot-vpn-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hot-vpn-yellow {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hot-vpn-green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hot-vpn-purple {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hot-vpn-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hot-vpn-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-popular {
    border: 3px solid #667eea;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.pricing-card .period {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #667eea;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #667eea;
    color: #fff;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* More VPN Section */
.more-vpn-section {
    background: #f8f9fa;
}

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

.vpn-logo-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.vpn-logo-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/* Focus VPN Section */
.focus-vpn-section {
    background: #fff;
}

.focus-vpn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.focus-vpn-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.focus-vpn-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.focus-vpn-content {
    padding: 25px;
}

.focus-vpn-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    padding: 12px 20px;
}

header a img {
    height: 48px;
    width: auto;
    transition: all 0.3s;
    filter: brightness(1.1);
}

header a img:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

#desktopNav .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

#desktopNav .nav-link {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s;
    white-space: nowrap;
}

#desktopNav .nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#mobileMenuToggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobileMenuToggle:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#mobileMenu {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#mobileMenu .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#mobileMenu .nav-link {
    color: #e2e8f0;
    font-size: 14px;
    padding: 14px 20px !important;
    border-radius: 10px;
    margin: 4px 0;
    transition: all 0.3s;
    display: block;
}

#mobileMenu .nav-link:hover {
    color: #fff;
    background: rgba(102, 126, 234, 0.2);
    padding-left: 30px;
}

#mobileMenu .container {
    padding: 15px 20px;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 70px 0 30px;
    color: #cbd5e1;
}

.site-footer .container {
    padding: 0 20px;
}

.footer-col-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.5);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: #667eea;
    padding-left: 8px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #8094f0;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0 25px;
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .video-section h2 {
        font-size: 24px;
    }
    
    .promo-text h3 {
        font-size: 22px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
}
