/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
    font-feature-settings: "ss01", "ss02";
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hide content initially */
.content-wrapper {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-wrapper.loaded {
    opacity: 1;
}

/* Ensure content is visible by default in case JavaScript fails */
.content-wrapper {
    opacity: 1 !important;
}

/* Global Styles */
:root {
    --primary-color: #00d084;
    --secondary-color: #00a86b;
    --accent-color: #00ff7f;
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Navigation Bar */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}




.navbar-brand {
    color: var(--primary-color) !important;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-feature-settings: "ss01", "ss02";
}

.navbar-logo {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}


.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--darker-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-controls {
        bottom: 1rem;
        gap: 0.75rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(-180deg ,  rgba(0, 0, 0, 0.7) , var(--dark-bg)),
                url('assets/img/hero.jpeg') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;
}

.hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-feature-settings: "ss01", "ss02";
}

.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 800px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-author {
    margin-bottom: 2rem;
}

.hero-author p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
    line-height: 1.2;
    font-feature-settings: "ss01", "ss02";
}

.section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Features Section */
.features-section {
    background: var(--dark-bg);
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 208, 132, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 208, 132, 0.3);
}

.feature-item h4 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.feature-item p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.pricing-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.4);
}

.pricing-item.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-item h3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.package-logo {
    width: 100%;
    height: 120px;
    margin: 0 auto 1.0rem;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.package-logo:hover {
    border: 2px solid var(--accent-color);;
}

.package-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-period {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.90rem, 1.2vw, 1.0rem);
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}
/* Responsive pricing packages */
@media (max-width: 768px) {
    .package-logo {
        margin-top:10px;
    min-height: 150px;
    
    }
.pricing-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.pricing-item {
    padding: 2rem;;
    margin-bottom: 1.5rem;
}


.pricing-item.featured {
    transform: scale(1.05);
}

.sale-badge {
    padding: 5px 20px;
    font-size: 0.8rem;
}

.pricing-item h3 {
    font-size: clamp(2.2rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price {
    /*font-size: clamp(5.5rem, 6vw, 7rem);*/
    font-size:50px;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}
.price-amount{
    font-size: clamp(3.5rem, 6vw, 5rem);
}

.price-period {
    font-size: clamp(1.0rem, 1.8vw, 1.5rem);
}

.pricing-features {
    margin-bottom: 2rem;
}

}

.theme-text-primary{
    color: var(--primary-color) !important;
}

.theme-text-secondary{
    color: var(--primary-color) !important;
}

.theme-text-accent{
    color: var(--accent-color) !important;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Trial Section */
.trial-section {
    background: var(--dark-bg);
}

.trial-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.trial-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 208, 132, 0.2);
}

.trial-item h4 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.trial-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trial-item a:hover {
    color: var(--primary-color);
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.review-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 208, 132, 0.3);
}

.review-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.review-header h5 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.review-date {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.review-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.review-rating {
    font-size: 1rem;
    color: #ffd700;
    margin-top: 0.25rem;
}

/* FAQ Section */
.faq-section {
    background: var(--dark-bg);
}

.question-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.question-form-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 208, 132, 0.2);
}

.form-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.form-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
}

.form-control {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(0, 208, 132, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-message {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: block;
}

.form-message.error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid #ff3b30;
    color: #ff3b30;
    display: block;
}

/* Modal Styles */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.modal-body {
    padding: 1.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.btn-close:hover {
    opacity: 1;
}

/* Team Section */
.team-section {
    background: var(--dark-bg);
}

.team-member {
    text-align: center;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.2);
}

.team-member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover .team-member-image {
    border-color: var(--primary-color);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info h4 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-member-bio {
    color: var(--text-muted);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member-social .social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--darker-bg);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-member-social .social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.team-note {
    color: var(--text-muted);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-style: italic;
}

.team-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-member-info h4 {
        font-size: 1.1rem;
    }
    
    .team-member-role {
        font-size: 0.8rem;
    }
    
    .team-member-bio {
        font-size: 0.85rem;
    }
    
    .team-member-social .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Team Slider */
.team-slider-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.team-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-slide.active {
    opacity: 1;
}

/* Team Slider Controls */
.team-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.team-slider-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.team-slider-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.team-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.team-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--darker-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.team-slider-dot:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .team-slider-container {
        max-width: 350px;
    }
    
    .team-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .team-slider-dots {
        gap: 0.4rem;
    }
    
    .team-slider-dot {
        width: 8px;
        height: 8px;
    }
}

.review-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.review-slider {
    position: relative;
    width: 100%;
}

.review-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.review-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.review-slider-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.review-slider-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.review-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.review-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--darker-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    
    .review-container{
        gap:1.0rem;
    }
    .review-slider-controls {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .review-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .review-slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* Star Rating System */
.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.star-rating i {
    color: var(--border-color);
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #ffd700;
}

.star-rating i.active {
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-muted);
    padding: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Apex Section */
.apex-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.apex-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.apex-main-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.apex-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.apex-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.apex-content {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.apex-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.05em;
}

.apex-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
}

.apex-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.apex-features {
    margin-bottom: 2rem;
}

.apex-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.apex-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.apex-cta {
    text-align: left;
}

.apex-note {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.apex-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.apex-card {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.apex-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.apex-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.apex-info-text h5 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.apex-info-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
    font-weight: 400;
}

.discount-display {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.discount-original {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 400;
}

.discount-badge {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.05em;
    display: inline-block;
}

.discount-final {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
    letter-spacing: -0.02em;
}

.apex-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive Apex Section */
@media (max-width: 768px) {
    .apex-main-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .apex-header-section {
        margin-bottom: 1.5rem;
    }
    
    .apex-header-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .apex-header-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .apex-content {
        padding: 1rem;
    }
    
    .apex-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .apex-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .apex-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .apex-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .apex-cta .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .apex-note {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .apex-card {
        margin-top: 1.5rem;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .apex-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .apex-logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .apex-info-text h5 {
        font-size: 0.9rem;
    }
    
    .apex-info-text p {
        font-size: 0.75rem;
    }
    
    .discount-original {
        font-size: 1.2rem;
    }
    
    .discount-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.3rem 0;
    }
    
    .discount-final {
        font-size: 1.8rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .apex-main-card {
        padding: 1rem 0.75rem;
        margin: 0 0.25rem;
    }
    
    .apex-header-section .section-title {
        font-size: 1.3rem;
    }
    
    .apex-header-section .section-subtitle {
        font-size: 0.85rem;
    }
    
    .apex-content {
        padding: 0.75rem;
    }
    
    .apex-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .apex-title {
        font-size: 1.5rem;
    }
    
    .apex-subtitle {
        font-size: 0.9rem;
    }
    
    .apex-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .apex-cta .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .apex-note {
        font-size: 0.7rem;
    }
    
    .apex-card {
        padding: 1rem;
    }
    
    .apex-header {
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
    
    .apex-logo {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .apex-info-text h5 {
        font-size: 0.8rem;
    }
    
    .apex-info-text p {
        font-size: 0.7rem;
    }
    
    .discount-original {
        font-size: 1rem;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .discount-final {
        font-size: 1.5rem;
    }
}

/* Footer Section Separators */
.footer-section-separator {
    width: 1px;
    background: var(--border-color);
    opacity: 1;
    align-self: stretch;
}

/* Add borders to footer sections instead of using separator margins */
.footer-sections {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding: 0 1rem;
}

.footer-section {
    border-right: 1px solid var(--border-color);
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-section:last-child {
    border-right: none;
    padding-right: 0;
}

/* Custom Horizontal Footer Layout */
.footer-content {
    width: 100%;
}

.footer-sections {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    overflow-x: auto;
    padding: 0 1rem;
}

.footer-brand-section {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 400px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    flex-shrink: 0;
}

/* Ensure horizontal layout for footer sections */
@media (max-width: 991px) {
    .footer-section-separator {
        margin: 1.5rem 0;
    }
    
    .footer-sections {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .footer-brand-section {
        min-width: 250px;
        max-width: 300px;
    }
    
    .footer-section {
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .footer-section-separator {
        margin: 1rem 0;
    }
    
    .footer-sections {
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .footer-brand-section {
        min-width: 200px;
        max-width: 250px;
    }
    
    .footer-section {
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .footer-sections {
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .footer-brand-section {
        min-width: 180px;
        max-width: 220px;
    }
    
    .footer-section {
        min-width: 120px;
    }
}
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-feature-settings: "ss01", "ss02";
}

.footer-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.footer-cta {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.copyright {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.footer-legal a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 208, 132, 0.1);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.social-icon.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #0d66d1);
    color: var(--text-light);
}

.social-icon.twitter:hover {
    background: linear-gradient(45deg, #000000, #333333);
    color: var(--text-light);
}

.social-icon.youtube:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.4);
}

.btn-outline-primary {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-warning {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--accent-color);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 25px;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

.btn-warning:hover {
    background: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.4);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-left.show {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations */
.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

/* Mobile Menu Slide-in */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.show {
    left: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-brand {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.0rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-feature-settings: "ss01", "ss02";
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-nav {
    padding: 1rem 0;
}

.mobile-menu-nav .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 208, 132, 0.1);
    border-left-color: var(--primary-color);
}

.mobile-menu-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 208, 132, 0.1);
    border-left-color: var(--primary-color);
}

/* Hide default Bootstrap mobile menu */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
}

/* Show custom mobile menu button */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-menu {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .title-text{
        
    }
    .hero-section {
    min-height: 70vh;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .pricing-item.featured {
        transform: scale(1);
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar-brand {
        font-size: 1.0rem;
    }
    .navbar-logo {
    width: 70px;
    height: 60px;
}
    
    .navbar-nav .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .feature-item,
    .pricing-item,
    .review-item,
    .trial-item {
        padding: 0.9rem;
    }
}

/* Responsive Educational Resources */
@media (max-width: 768px) {
    .trial-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .trial-item h4 {
        justify-content: center;
    }
    
    .trial-item a {
        text-align: center;
        word-break: break-word;
    }
}
