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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    border-bottom: 1px solid #ff4500;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff4500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4500;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: translateY(150px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #ff4500;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.5);
    background: #ff5722;
}

/* Features Section */
.features {
    padding: 20px 5%;
    text-align: center;
    background: #111;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ff4500;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff4500;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #999;
}

/* Pricing Section */
.pricing {
    padding: 100px 5%;
    text-align: center;
    background: #0a0a0a;
}

.pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #ff4500;
}

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

.price-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.popular {
    border-color: #ff4500;
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #ff4500;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #999;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.price-card li::before {
    content: '✓ ';
    color: #ff4500;
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    text-align: center;
    background: #111;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ff4500;
}

.contact-subtitle {
    color: #999;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
    transform: translateY(-5px);
}

.whatsapp {
    background: #25d366;
    color: #fff;
}

.whatsapp:hover {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
}

.telegram {
    background: #0088cc;
    color: #fff;
}

.telegram:hover {
    box-shadow: 0 5px 30px rgba(0, 136, 204, 0.5);
}

.email {
    background: #ff4500;
    color: #fff;
}

.email:hover {
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.5);
}

/* Footer */
.footer {
    padding: 30px;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid #333;
    color: #999;
}

/* Plan Detail Page */
.plan-detail {
    padding: 150px 5% 100px;
    max-width: 800px;
    margin: 0 auto;
}

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

.plan-badge {
    display: inline-block;
    background: #333;
    color: #ff4500;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: 1px solid #ff4500;
}

.plan-badge.popular {
    background: #ff4500;
    color: #fff;
}

.plan-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff4500;
}

.plan-price span {
    font-size: 1.2rem;
    color: #999;
}

.plan-content {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #333;
}

.plan-description h2,
.plan-features-list h2 {
    font-size: 1.5rem;
    color: #ff4500;
    margin-bottom: 15px;
}

.plan-description p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.plan-features-list ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    color: #fff;
    font-size: 1.1rem;
}

.plan-features-list li i {
    color: #ff4500;
    margin-right: 10px;
}

.plan-note {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff4500;
    margin-bottom: 30px;
}

.plan-note h3 {
    color: #ff4500;
    margin-bottom: 10px;
}

.plan-note p {
    color: #ccc;
}

.plan-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-cta .btn {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.btn-secondary {
    background: #333;
    color: #fff;
}

.btn-secondary:hover {
    background: #444;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}
