/* ----------------------------------------------------------------
FILE: main_site.css
---------------------------------------------------------------- */
:root {
    --primary: #458FD0;
    --primary-dark: #2a6fac;
    --primary-light: rgba(69, 143, 208, 0.1);
    --dark: #121218;
    --dark-light: #1a1a24;
    --darker: #0a0a0f;
    --light: #e0e0e0;
    --lighter: #f0f0f0;
    --text: #e0e0e0;
    --text-light: #a0a0a0;
    --text-lighter: #707070;
    --danger: #e74c3c;
    --success: #2ecc71;
    --warning: #f39c12;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border: 1px solid rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(69, 143, 208, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(69, 143, 208, 0.15) 0%, transparent 25%);
    background-attachment: fixed;
}

.navbar {

    background: var(--dark);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: var(--border);
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 30px;
}

.navbar-brand h2 {
    color: var(--primary);
    font-size: 1.3rem;
}

.navbar-links {
    display: flex;
    gap: 20px;
	padding-right: 90px; 
}

.navbar-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.navbar-link:hover {
    color: var(--primary);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link.active {
    color: var(--primary);
}

.navbar-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 143, 208, 0.3);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 30px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: var(--border);
}

/* Features Section */
.section {
    padding: 80px 30px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title span {
    color: var(--primary);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: var(--border);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(69, 143, 208, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background: var(--dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text);
}

.section-title span {
    color: var(--primary);
}

.pricing-section {
    padding: 80px 0;
    background: var(--dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text);
}

.section-title span {
    color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: var(--dark-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-light);
    z-index: -1;
}



.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 600;
}

.pricing-title span {
    color: var(--primary);
    font-weight: 500;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 25px 0;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.pricing-price .amount {
    color: var(--primary);
}

.pricing-price .duration {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.pricing-features {
    margin: 35px 0;
    text-align: left;
    padding: 0 15px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-feature i {
    color: var(--primary);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 0.9rem;
}

.pricing-feature.disabled {
    opacity: 0.5;
}

.btn-pricing {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    width: 80%;
    max-width: 240px;
    margin-top: 10px;
}

.btn-pricing:hover {
    background: transparent;
    color: var(--primary);
}

.btn-pricing {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-pricing:hover {
    color: var(--primary-dark);
}

.price-savings {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
   
}


/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header:hover {
    background: var(--dark-light);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-text {
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-arrow {
    color: var(--text-light);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content-inner {
    padding: 0 20px 20px 60px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 50px 30px 20px;
    border-top: var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
}

.footer-link a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 20px 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 20px;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* 404 Page */
.error-hero {
    min-height: 100vh;
    padding-top: 120px;
}

.error-code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(69, 143, 208, 0.4);
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing-card:nth-child(3) { transition-delay: 0.3s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }
