/* Base Styles */
:root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --accent: #fd79a8;
    --dark: #2d3436;
    --light: #f5f6fa;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
    line-height: 1.6;
    background: linear-gradient(135deg, #1a2a6c, #2c3e50);
         
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.website-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.website-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.website-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.price-badge {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Intro Section */
.website-intro {
    padding: 4rem 0;
    text-align: center;
}

.website-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.website-intro p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
}

.tier.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tier h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.tier .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--dark);
}

.tier ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier ul li:before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
}

/* Website Showcase */
.website-showcase {
    padding: 4rem 0;
    background-color: var(--light);
}

.website-showcase h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.website-slider {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1.5rem;
}

.slide-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.slide-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.slide-info .price {
    font-weight: 700;
    color: var(--accent);
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* Features Section */
.website-features {
    padding: 4rem 0;
    background: white;
}

.website-features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

/* CTA Section */
.website-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.website-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.website-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn i {
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

.contact-btn.email {
    background: white;
    color: var(--dark);
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.website-footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.website-footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .website-header h1 {
        font-size: 2.2rem;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .website-slider {
        height: 400px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

.navbar {
    background: linear-gradient(135deg, #0f1b3a, #1d2c4d);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.logo-icon i {
    font-size: 22px;
    color: white;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    color: #4cc9f0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    height: 100%;
}

.nav-links > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links > li > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.nav-links > li > a:hover {
    color: white;
    background: rgba(67, 97, 238, 0.15);
}

.nav-links > li > a i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f0f5ff;
    color: #4361ee;
    padding-left: 25px;
}

.dropdown-menu a i {
    margin-right: 10px;
    color: #4361ee;
    font-size: 14px;
    width: 20px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.5);
}

.btn-outline {
    border: 2px solid #4cc9f0;
    color: #4cc9f0;
}

.btn-outline:hover {
    background: rgba(76, 201, 240, 0.1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #0c1a3a, #1b2a4d);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin-bottom: 10px;
}

.mobile-links a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-links a:hover {
    background: rgba(67, 97, 238, 0.2);
    color: white;
}

.mobile-links a i {
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.mobile-dropdown-menu {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    margin-left: 20px;
}

.mobile-dropdown-menu a {
    padding-left: 45px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Content Styles */
.content {
    padding: 40px;
    text-align: center;
}

.hero {
    padding: 60px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.6);
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(67, 97, 238, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.3);
}

.feature-card i {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .feature-card {
        width: 100%;
    }
}


.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
    .floating-btn {
      padding: 12px 24px;
      font-size: 14px;
      bottom: 20px;
      right: 20px;
    }
  
  