/* Reset & Custom Properties */
:root {
    /* Colors */
    --clr-primary: #2D3FE7;
    --clr-primary-light: #4F5FF9;
    --clr-primary-dark: #1C2BA3;
    --clr-accent: #00F5D4;
    --clr-secondary: #FF3366;
    
    --clr-text-dark: #1A1B1E;
    --clr-text-light: #9BA1A6;
    --clr-background: #F8FAFC;
    --clr-white: #ffffff;
    
    /* Typography */
    --ff-heading: 'Manrope', sans-serif;
    --ff-body: 'Sora', sans-serif;
    
    /* Font Sizes */
    --fs-300: 0.875rem;
    --fs-400: 1rem;
    --fs-500: 1.125rem;
    --fs-600: 1.375rem;
    --fs-700: 1.75rem;
    --fs-800: 2.5rem;
    --fs-900: 3.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Other */
    --border-radius: 12px;
    --container-width: 1200px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: var(--ff-body);
    font-size: var(--fs-400);
    line-height: 1.6;
    color: var(--clr-text-dark);
    background-color: var(--clr-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 80px;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--ff-heading);
    line-height: 1.2;
    font-weight: 700;
}

/* Utility Classes */
.container {
    width: min(var(--container-width), 100% - 2rem);
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2em;
    border-radius: 100px;
    border: none;
    font-family: var(--ff-heading);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
}

.btn--primary {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: var(--clr-white);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 63, 231, 0.25);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(28, 43, 163, 0.97) 0%,
        rgba(45, 63, 231, 0.95) 100%
    );
    z-index: -1;
}

@media (max-width: 680px) {
    .about-host__image{
        display: none;
    }

    .about-host__grid {
        display: grid;
        grid-template-columns: auto;
    }
}


.hero__container {
    position: relative;
    z-index: 1;
    padding: var(--space-xl) 0;
}

.hero__content {
    max-width: 800px;
}

.hero__tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.hero__tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: var(--fs-300);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__tag i {
    font-size: 0.9em;
}

/* Specific styles for live indicator */
.text-danger {
    color: #ff4444;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .hero__tag {
        padding: 4px 12px;
        font-size: var(--fs-200);
    }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-weight: 800;
}

.hero__title .highlight {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #80FFF2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: clamp(var(--fs-400), 2vw, var(--fs-500));
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 650px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
    font-weight: 600;
    padding: 1em 2em;
    border-radius: 100px;
    border: none;
    font-size: var(--fs-500);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 245, 212, 0.25);
}

.btn--ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
    font-weight: 600;
    padding: 1em 2em;
    border-radius: 100px;
    border: none;
    font-size: var(--fs-500);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto 0;
}

.btn--ctas:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 245, 212, 0.25);
}


.hero__stats {
    display: flex;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--fs-300);
}

.stat i {
    font-size: 1.25rem;
    color: var(--clr-accent);
}

/* Expert Card */
.expert-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--space-md);
    color: var(--clr-white);
}

.expert-card__image {
    margin-bottom: var(--space-md);
}

.expert-card__image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    display: block;
}

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

.expert-card__content h3 {
    font-size: var(--fs-600);
    margin-bottom: var(--space-xs);
}

.expert-card__content p {
    font-size: var(--fs-400);
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.expert-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero__container {
        padding: var(--space-lg) 0;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero__title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
}

/* Section Basics */
.section {
    padding: var(--space-xl) 0;
}

.section__title {
    font-size: var(--fs-800);
    margin-bottom: var(--space-md);
    text-align: center;
}

/* Grid Layouts */
.benefits__grid,
.target-audience__grid,
.gallery__grid,
.faqs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

/* About Host Section */
.about-host {
    background-color: var(--clr-white);
    position: relative;
}

@media (min-width: 768px) {
    .about-host__grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: var(--space-lg);
        align-items: start;
    }
    
}

.about-host__image {
    position: relative;
}

.about-host__image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-host__mission {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: var(--clr-white);
    padding: 1rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(45, 63, 231, 0.25);
}

.about-host__mission i {
    font-size: 1.25rem;
}

.about-host__name {
    font-size: var(--fs-800);
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-sm);
}

.about-host__bio {
    font-size: var(--fs-500);
    color: var(--clr-text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.about-host__achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
}

.achievement-card {
    padding: var(--space-sm);
    border-radius: 16px;
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.achievement-card i {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
}

.achievement-card h4 {
    font-size: var(--fs-400);
    color: var(--clr-text-dark);
    margin-bottom: var(--space-xs);
}

.achievement-card p {
    font-size: var(--fs-300);
    color: var(--clr-text-light);
    line-height: 1.4;
}

.achievement-card.highlight {
    background: linear-gradient(135deg, rgba(45, 63, 231, 0.05) 0%, rgba(0, 245, 212, 0.05) 100%);
    border: 1px solid rgba(45, 63, 231, 0.1);
}

/* Media Strip */
.media-strip {
    margin-top: var(--space-lg);
}

.media-strip__headline {
    text-align: center;
    font-size: var(--fs-700);
    color: var(--clr-text-dark);
    margin-bottom: var(--space-xs);
}

.media-strip__title {
    text-align: center;
    color: var(--clr-text-light);
    font-size: var(--fs-400);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.media-strip__logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.logo-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .media-strip__logos {
        gap: var(--space-sm);
    }
    
    .logo-wrapper {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .media-strip__logos {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .media-strip__headline {
        font-size: var(--fs-600);
    }
}

@media (max-width: 480px) {
    .media-strip__logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Target Audience Section */


.audience-card {
    background: var(--clr-white);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.audience-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45, 63, 231, 0.1) 0%, rgba(0, 245, 212, 0.1) 100%);
    color: var(--clr-primary);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.audience-card__title {
    font-size: var(--fs-600);
    margin-bottom: var(--space-sm);
    color: var(--clr-text-dark);
}

.audience-card__desc {
    color: var(--clr-text-light);
    font-size: var(--fs-400);
}

.audience-card__list {
    list-style: none;
    padding: 0;
}

.audience-card__list li {
    color: var(--clr-text-dark);
    font-size: var(--fs-400);
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.audience-card__list li::before {
    content: '•';
    color: var(--clr-primary);
    font-size: 1.5em;
}

/* Testimonials */
.testimonials {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: var(--space-md) 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    padding: var(--space-md);
    box-sizing: border-box;
    margin-right: var(--space-md);

}

.testimonial-card__content {
    margin-bottom: var(--space-md);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-md);
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background: var(--clr-primary);
}

/* Desktop styles */
@media (min-width: 768px) {
    .testimonial-card {
        min-width: 47.5%;
    }
}

/* Footer adjustments */
.footer {
    background: var(--clr-text-dark);
    padding: var(--space-md) 0;
    color: var(--clr-white);
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer__info {
    font-size: var(--fs-300);
}

.footer__copyright {
    margin-bottom: 4px;
}

.footer__tagline {
    opacity: 0.7;
}

.heart {
    color: #ff4d4d;
    display: inline-block;
    animation: heartbeat 1.5s ease infinite;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--clr-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Brand Colors */
.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.email {
    background: #ea4335;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hover effects */
.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.email:hover {
    background: #ea4335;
}

.social-icon.whatsapp:hover {
    background: #25d366;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .footer__info {
        order: 2;
    }

    .footer__social {
        order: 1;
    }
}

@media (max-width: 480px) {
    .footer__social {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xs);
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9em;
    }
}

/* Dark Theme Section */
.section--dark {
    background-color: var(--clr-text-dark);
    color: var(--clr-white);
}

.section__subtitle {
    text-align: center;
}
.section--dark .section__title,
.section--dark .section__subtitle {
    color: var(--clr-white);
}

.section--dark .section__subtitle {
    opacity: 0.7;
}

/* Target Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.section--dark .audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.section--dark .audience-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.section--dark .audience-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(45, 63, 231, 0.1) 100%);
    color: var(--clr-accent);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.section--dark .audience-card__title {
    font-size: var(--fs-500);
    color: var(--clr-white);
    font-weight: 600;
}

.section--dark .audience-card__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-300);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .section--dark .audience-card {
        padding: var(--space-md);
    }
}

/* Testimonials Section */
.testimonials.section--dark {
    background: var(--clr-text-dark);
    color: var(--clr-white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--space-md);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-card__content {
    position: relative;
    margin-bottom: var(--space-sm);
}

.testimonial-card__content i {
    color: var(--clr-accent);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

.testimonial-card__content p {
    font-size: var(--fs-300);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author__info h4 {
    font-size: var(--fs-400);
    margin-bottom: 4px;
    color: var(--clr-white);
}

.author__info p {
    font-size: var(--fs-300);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: var(--space-md);
    }
}

/* Community Section */
.community.section--dark {
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, #2d84e7 100%);
    color: var(--clr-white);
}

.community__intro {
    margin: 0 auto;
    text-align: center;
}

.community__stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    margin: var(--space-md) 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: var(--fs-800);
    font-weight: 700;
    color: #f8d800;
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-size: var(--fs-300);
    color: var(--clr-text);
    line-height: 1.3;
}

.stat-separator {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .community__stats {
        flex-wrap: wrap;
        gap: var(--space-md);
        margin: var(--space-md) 0;
    }

    .stat-item {
        flex: 0 0 calc(50% - var(--space-md)); /* 2 items per row */
        padding: var(--space-sm);
    }

    .stat-number {
        font-size: var(--fs-600);
        margin-bottom: var(--space-xxs);
    }

    .stat-label {
        font-size: var(--fs-200);
    }

    /* Hide separators on mobile */
    .stat-separator {
        display: none;
    }
}

/* Small mobile adjustments */
@media (max-width: 375px) {
    .stat-number {
        font-size: var(--fs-400);
    }
    
    .stat-label {
        font-size: var(--fs-100);
    }
}

.community__vision {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.community__vision h3 {
    font-size: var(--fs-600);
    margin-bottom: var(--space-md);
    color: var(--clr-accent);
}

.services__grid {
    text-align: center;
}

.services__title {
    font-size: var(--fs-700);
    margin-bottom: var(--space-xs);
}

.services__subtitle {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.services__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.service-card {
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 27%);
    border-radius: 8px;
    padding: var(--space-sm);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: var(--clr-primary);
    margin-right: var(--space-sm);
    flex-shrink: 0;
}

.service-card__icon i {
    font-size: 1.5rem;
    color: var(--clr-white);
}

.service-card__content {
    text-align: left;
}

.service-card__content h4 {
    color: var(--clr-white);
    margin-bottom: 4px;
    font-size: var(--fs-400);
}

.service-card__content p {
    color: var(--clr-white);
    font-size: .8em;
    margin: 0;
}

/* Tablet view */
@media (min-width: 768px) {
    .services__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop view */
@media (min-width: 1024px) {
    .services__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Gallery Section */
.gallery {
    background-color: var(--clr-white);
    padding: var(--space-lg) 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: var(--space-md);
    max-width: 1000px;
    margin-inline: auto;
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__overlay h3 {
    font-size: var(--fs-400);
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--clr-white);
}

.gallery__overlay p {
    font-size: var(--fs-300);
    opacity: 0.9;
    color: var(--clr-white);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__overlay {
        opacity: 1;
    }
    
    .gallery__overlay h3 {
        font-size: var(--fs-300);
    }
    
    .gallery__overlay p {
        font-size: var(--fs-200);
    }
}

/* Benefits Section */
.benefits {
    background-color: var(--clr-background);
    padding: var(--space-xl) 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: 16px;
    background: var(--clr-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--clr-primary);
}

.benefit-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--clr-primary);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.benefit-card__content {
    flex: 1;
}

.benefit-card__title {
    font-size: var(--fs-400);
    color: var(--clr-primary-dark);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    line-height: 1.3;
}

.benefit-card__title_hero {
    font-size: var(--fs-600);
    color: #ffcc00;
    margin-bottom: var(--space-xs);
}

.benefit-card__desc {
    font-size: var(--fs-300);
    color: var(--clr-text-light);
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .benefit-card {
        padding: var(--space-sm);
    }

    .benefit-card__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .benefit-card__title {
        font-size: var(--fs-400);
    }

    .benefit-card__desc {
        font-size: var(--fs-300);
    }
}

/* Floating CTA Banner */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
    padding: var(--space-sm);
    height: 80px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.floating-cta__text {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--clr-white);
}

.floating-cta__price {
    font-size: var(--fs-700);
    font-weight: 700;
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5em 0.75em;
    border-radius: 12px;
}

.floating-cta__info h3 {
    font-size: var(--fs-400);
    margin-bottom: 4px;
}

.floating-cta__info p {
    font-size: var(--fs-300);
    opacity: 0.9;
}

.floating-cta__button {
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: 0.75em 1.5em;
    border-radius: 100px;
    border: none;
    font-size: var(--fs-400);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.floating-cta__button:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
}

.floating-cta__button i {
    transition: transform 0.3s ease;
}

.floating-cta__button:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-cta {
        padding: var(--space-xs);
    }

    .floating-cta__content {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .floating-cta__text {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xs);
    }

    .floating-cta__price {
        font-size: var(--fs-600);
    }

    .floating-cta__info h3 {
        font-size: var(--fs-400);
    }

    .floating-cta__info p {
        font-size: var(--fs-300);
    }

    .floating-cta__button {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ Section */
.faqs {
    background-color: var(--clr-white);
    padding: var(--space-xl) 0;
}

.faqs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.faqs__column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--clr-primary);
}

.faq-card__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--fs-400);
    font-weight: 600;
    color: var(--clr-text-dark);
    text-align: left;
}

.faq-card__question i {
    transition: transform 0.3s ease;
    color: var(--clr-primary);
    font-size: 0.8em;
}

.faq-card__question.active i {
    transform: rotate(180deg);
}

.faq-card__answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card__answer.active {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 1000px;
}

.faq-card__answer p {
    color: var(--clr-text-dark);
    line-height: 1.6;
    font-size: var(--fs-300);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .faqs__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .faq-card__question {
        font-size: var(--fs-400);
        padding: var(--space-sm);
    }
    
    .faq-card__answer.active {
        padding: 0 var(--space-sm) var(--space-sm);
    }
}

main {
    flex: 1;
    position: relative;
}

.cta-band {
    background: linear-gradient(45deg, var(--clr-primary), #2D3FE7);
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

/* .cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgba(255,255,255,0.1) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    opacity: 0.1;
} */

.cta-band__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-band__info h2 {
    color: var(--clr-white);
    font-size: var(--fs-700);
    margin-bottom: var(--space-xs);
    font-weight: 700;
    line-height: 1.2;
}

.cta-band__info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-400);
    margin: 0;
}

.cta-band__action {
    text-align: center;
    min-width: 300px;
}

.price-block {
    margin-bottom: var(--space-sm);
}

.price-tag {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
}

.original-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-400);
    text-decoration: line-through;
}

.current-price {
    color: var(--clr-white);
    font-size: var(--fs-600);
    font-weight: 700;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--clr-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: var(--fs-300);
    font-weight: 600;
}

.btn--primary {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-300);
}

/* Mobile styles */
@media (max-width: 768px) {
    .cta-band__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    .cta-band__action {
        min-width: auto;
    }

    .cta-band__info h2 {
        font-size: var(--fs-600);
    }

    .cta-band__info p {
        font-size: var(--fs-300);
    }
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    padding: var(--space-sm) 0;
    text-align: center;
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.sticky-cta:hover {
    background: rgba(17, 17, 17, 1);
}

.sticky-cta__text {
    color: var(--clr-white);
    font-size: var(--fs-400);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.sticky-cta__price-old {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: var(--space-xs);
}

.sticky-cta__price-new {
    color: var(--clr-primary);
    font-weight: 700;
}

.sticky-cta__discount {
    background: #FFD700;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--fs-300);
    font-weight: 600;
    margin-left: var(--space-sm);
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: var(--space-xs) 0;
    }
    
    .sticky-cta__text {
        font-size: var(--fs-300);
        gap: var(--space-xs);
    }

    .sticky-cta__discount {
        padding: 2px 8px;
        font-size: var(--fs-200);
    }
}

/* Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1rem;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.nav__link {
    color: var(--clr-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #ffac00;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__cta .btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav__toggle span:first-child {
    top: 0;
}

.nav__toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav__toggle span:last-child {
    bottom: 0;
}

.nav__toggle.active span:first-child {
    transform: translateY(11px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:last-child {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--clr-primary-dark);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav__menu.active {
        height: auto;
        padding: 2rem 1rem;
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }

    .nav__cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav__cta .btn--sm {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        text-decoration: none;
    }
}

/* Add space for fixed header */
body {
    padding-top: 80px;
}

/* ===================================
   HOME PAGE HERO STYLES
   =================================== */

/* Home Hero Specific Styles */
.hero--home {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero--home .hero__bg {
    background-image: url('../assets/images/hero-basic.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--home .hero__bg::after {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(45, 45, 45, 0.7) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.hero--home .hero__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero--home .hero__content {
    max-width: 800px;
    margin: 0 0 40px auto;
    text-align: center;
}

.hero--home .hero__tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero--home .hero__tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero--home .hero__tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero--home .hero__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero--home .hero__title .highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero--home .hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero--home .hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero--home .btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b9d 100%);
    color: var(--clr-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero--home .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.hero--home .hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.hero--home .stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero--home .stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.hero--home .stat i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 0.75rem;
    display: block;
}

.hero--home .stat span {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile Responsive for Home Hero */
@media (max-width: 768px) {
    .hero--home .hero__tags {
        gap: 0.75rem;
    }

    .hero--home .hero__tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero--home .hero__cta {
        gap: 1.5rem;
    }

    .hero--home .btn--primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero--home .hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero--home .stat {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero--home .hero__container {
        padding: 0 1rem;
    }

    .hero--home .hero__tags {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   EVENTS SECTION STYLES
   =================================== */

/* Events Section */
.events-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.events-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.events-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--clr-dark);
}

.events-title .highlight {
    background: linear-gradient(135deg, #007bff 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--clr-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Event Card */
.event-card {
    background: var(--clr-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-card--featured {
    border-color: #28a745;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--clr-white);
}

.event-card--exclusive {
    border-color: #6f42c1;
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: var(--clr-white);
}



/* Event Card Header */
.event-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-card--featured .event-card__header,
.event-card--exclusive .event-card__header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.event-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-secondary);
}

.event-card--featured .event-type,
.event-card--exclusive .event-type {
    color: rgba(255, 255, 255, 0.9);
}

.event-type i {
    font-size: 1rem;
}

.event-date {
    text-align: right;
}

.event-date .date {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-dark);
}

.event-card--featured .event-date .date,
.event-card--exclusive .event-date .date {
    color: var(--clr-white);
}

.event-date .time {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-text-secondary);
}

.event-card--featured .event-date .time,
.event-card--exclusive .event-date .time {
    color: rgba(255, 255, 255, 0.8);
}

/* Event Card Content */
.event-card__content {
    padding: 1.25rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-dark);
    line-height: 1.3;
}

.event-card--featured .event-title,
.event-card--exclusive .event-title {
    color: var(--clr-white);
}

.event-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--clr-text-secondary);
    margin-bottom: 1rem;
}

.event-card--featured .event-description,
.event-card--exclusive .event-description {
    color: rgba(255, 255, 255, 0.9);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-secondary);
}

.event-card--featured .event-detail,
.event-card--exclusive .event-detail {
    color: rgba(255, 255, 255, 0.8);
}

.event-detail i {
    width: 16px;
    color: var(--clr-primary);
}

.event-card--featured .event-detail i,
.event-card--exclusive .event-detail i {
    color: rgba(255, 255, 255, 0.9);
}

/* Event Card Footer */
.event-card__footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-card--featured .event-card__footer,
.event-card--exclusive .event-card__footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.btn--event {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.event-card--featured .btn--event,
.event-card--exclusive .btn--event {
    background: var(--clr-white);
    color: #333333;
    font-weight: 700;
}

.event-card--featured .btn--event:hover,
.event-card--exclusive .btn--event:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #222222;
    transform: translateY(-2px);
}

/* Event Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge--upcoming {
    background: #E3F2FD;
    color: #1976D2;
}

.status-badge--concluded {
    background: #E8F5E8;
    color: #2E7D32;
    text-transform: uppercase;
    font-weight: 700;
}

.status-badge--cancelled {
    background: #FFEBEE;
    color: #D32F2F;
}

.event-status {
    margin-top: 1rem;
    text-align: center;
}

/* Events CTA */
.events-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .events-section {
        padding: 100px 0 60px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card__header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .events-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 80px 0 40px;
    }

    .event-card__header,
    .event-card__content,
    .event-card__footer {
        padding: 1rem;
    }

    .btn--outline {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===================================
   WHY RAJIV K CHAWLA SECTION
   =================================== */

/* Why Rajiv Section */
.why-rajiv-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%); */
    color: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.why-rajiv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.why-rajiv__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-rajiv__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-rajiv__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(29, 29, 29, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.why-rajiv__content {
    position: relative;
    z-index: 2;
}

/* Rajiv Profile */
.rajiv-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.rajiv-profile__image {
    position: relative;
}

.rajiv-profile__image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #FFD700;
}

.profile-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.profile-badge span {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.profile-badge small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.rajiv-profile__quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #FFD700;
}

.rajiv-profile__quote cite {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.differentiator-card {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.diff-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.differentiator-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.differentiator-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Battle Tested Banner */
.battle-tested-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    text-align: center;
}

.banner-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Credibility Proof */
.credibility-proof {
    text-align: center;
    margin-bottom: 3rem;
}

.credibility-proof h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFD700;
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.proof-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.proof-point i {
    color: #FFD700;
    font-size: 1.2rem;
}

.proof-point span {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.why-rajiv__cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-rajiv__cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--clr-white);
}

.btn--gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.btn--gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-rajiv-section {
        padding: 80px 0;
    }

    .rajiv-profile {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .banner-stats {
        grid-template-columns: 1fr;
    }

    .proof-points {
        grid-template-columns: 1fr;
    }

    .proof-point {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn--gold {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===================================
   GAPS PROGRAMS SECTION
   =================================== */

/* GAPS Programs Section */
.gaps-programs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.gaps-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="programs-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="%23007bff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23programs-pattern)"/></svg>');
}

.gaps-programs__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.gaps-programs__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.highlight-blue {
    background: linear-gradient(135deg, #007bff 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gaps-programs__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: var(--clr-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Program Card */
.program-card {
    background: var(--clr-white);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.program-card--basic {
    border-color: rgba(0, 123, 255, 0.2);
}

.program-card--basic:hover {
    border-color: rgba(0, 123, 255, 0.4);
}

.program-card--signature {
    border-color: rgba(111, 66, 193, 0.2);
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.03) 0%, rgba(232, 62, 140, 0.03) 100%);
}

.program-card--signature:hover {
    border-color: rgba(111, 66, 193, 0.4);
}

/* Program Header */
.program-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-badge--online {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--clr-white);
}

.program-badge--offline {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: var(--clr-white);
}

.program-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--clr-dark);
}

.program-card--signature .program-title {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-tagline {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--clr-text-secondary);
    font-weight: 500;
}

/* Program Features */
.program-features {
    padding: 0 2rem 1.5rem;
}

.program-features h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
    text-align: center;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 123, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #007bff;
    transition: all 0.2s ease;
}

.program-card--signature .features-list li {
    background: rgba(111, 66, 193, 0.03);
    border-left-color: #6f42c1;
}

.features-list li:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateX(5px);
}

.program-card--signature .features-list li:hover {
    background: rgba(111, 66, 193, 0.05);
}

.features-list i {
    color: #007bff;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.program-card--signature .features-list i {
    color: #6f42c1;
}

.features-list span {
    color: var(--clr-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* Program CTA */
.program-cta {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn--program {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.program-card--basic .btn--primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: var(--clr-white);
}

.program-card--basic .btn--primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.program-card--signature .btn--secondary {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: var(--clr-white);
}

.program-card--signature .btn--secondary:hover {
    background: linear-gradient(135deg, #5a2d91 0%, #d91a72 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .programs-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gaps-programs-section {
        padding: 80px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-header {
        padding: 2rem 1.5rem 1rem;
    }

    .program-features {
        padding: 0 1.5rem 1rem;
    }

    .program-cta {
        padding: 1.5rem;
    }

    .features-list li {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .program-header {
        padding: 1.5rem 1rem 1rem;
    }

    .program-features {
        padding: 0 1rem 1rem;
    }

    .program-cta {
        padding: 1rem;
    }

    .program-title {
        font-size: 1.5rem;
    }

    .btn--program {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Additional styles for new pages */
.hero--secondary,
.hero--about {
    min-height: 400px;
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero--secondary::before,
.hero--about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero--secondary .hero__content,
.hero--about .hero__content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero--secondary .hero__title,
.hero--about .hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero--secondary .hero__subtitle,
.hero--about .hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Hero with Background Image */
.hero--with-bg {
    position: relative;
    background-image: url('../assets/images/hero-basic.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 1;
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Transparent black overlay */
    z-index: -1;
}

.hero--with-bg .hero__title,
.hero--with-bg .hero__subtitle {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero--with-bg .hero__title {
    color: #80FFF2;
}

.hero--with-bg .hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.herobasic__subtitle {
    color: #fff;
    font-size: 1.5rem;
}

/* Goals Grid Section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    background-color: #ffffff1f;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.goal-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.goal-card__title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.goal-card__text {
    color: var(--color-text);
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .goal-card {
        padding: 1.5rem;
    }
    
    .goal-card__icon {
        font-size: 2rem;
        height: 50px;
        width: 50px;
        margin-bottom: 1rem;
    }
    
    .goal-card__title {
        font-size: 1.25rem;
    }
}

/* Benefits Section Styles */


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.benefit-card__icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.2);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card__content {
    flex-grow: 1;
}

/* .benefit-card__title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
} */

.benefit-card__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card__icon {
        font-size: 1.25rem;
        height: 40px;
        width: 40px;
    }
    
    .benefit-card__title {
        font-size: 1rem;
    }
    
    .benefit-card__text {
        font-size: 0.9rem;
    }
}

/* How It Works Section - 4 Column Structure */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Connected line between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), rgba(var(--color-primary-rgb), 0.3));
    z-index: 1;
}

.step__number {
    color: var(--clr-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: .5rem;
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    z-index: 2;
}

.step__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.step__content p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step::after {
        display: none !important;
    }
    
    .step__number {
        /* width: 50px;
        height: 50px; */
        font-size: .9rem;
        margin-bottom: 1rem;
    }
    
    .step__content h3 {
        font-size: 1.1rem;
    }
}

/* Video Testimonials */
.video-testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio (story format) */
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 5px; /* Slight offset for play icon */
}

.play-button:hover {
    transform: scale(1.1);
    background-color: var(--color-primary-dark);
}

.video-info {
    padding: 1.25rem;
    text-align: center;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-testimonials {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* About Page Styles */

/* Bio Section */
.bio-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bio-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.bio-image {
    flex: 0 0 280px;
}

.portrait-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bio-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.bio-social .social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--color-primary-dark);
}

.bio-content {
    flex: 1;
}

.bio-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #010101;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.highlight-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-heading);
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding-left: 2rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background-color: #f13366;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid #f13366;
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.3);
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-year {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--clr-secondary);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--clr-primary-dark);
}

.timeline-content p {
    color: var(--clr-text-dark);
    line-height: 1.6;
}

/* Positions Grid */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--clr-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.position-logo {
    object-fit: contain;
    object-position: center;
}

.position-card h3 {
    font-size: 1.1rem;
    color: var(--clr-text-dark);
    margin-bottom: 0.75rem;
    width: 100%;
}

.position-card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-bottom: 0.75rem;
    width: 100%;
    line-height: 1.4;
}

.position-card .position-desc {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .position-logo {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .position-logo {
        width: 280px;
    }
}

/* Previous Positions */
.previous-positions {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns */
    gap: 2rem;
    margin-top: 3rem;
}

.previous-position {
    display: flex;
    flex-direction: column; /* Changed to column layout */
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--clr-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.previous-position:hover {
    transform: translateY(-5px);
}

.position-logo-wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.position-logo-small {
    object-fit: contain;
    object-position: center;
}

.position-details {
    width: 100%;
}

.position-details h3 {
    font-size: 1.1rem;
    color: var(--clr-text-dark);
    margin-bottom: 0.75rem;
}

.position-details p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.position-period {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--clr-primary);
    font-weight: 600;
    padding: 0.2rem 0.75rem;
    background-color: rgba(45, 63, 231, 0.1);
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .previous-positions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .position-logo-small {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .previous-positions {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .position-logo-small {
        width: 280px;
    }
}

.position-details h3 {
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
}

.position-details p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.position-period {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.2rem 0.75rem;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 20px;
}

/* Vision Section */
.vision-section {
    background-color: var(--clr-primary-dark);
    color: #fff;
    padding: 5rem 0;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.vision-quote {
    position: relative;
    padding: 2rem 3rem;
    margin-bottom: 2.5rem;
}

.vision-quote i {
    font-size: 2rem;
    color: rgba(var(--color-primary-rgb), 0.5);
    position: absolute;
}

.vision-quote i.fa-quote-left {
    top: 0;
    left: 0;
}

.vision-quote i.fa-quote-right {
    bottom: 0;
    right: 0;
}

.vision-quote p {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: #fff;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.vision-programs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-10px);
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.program-details h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.program-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.section--primary {
    background-color: var(--color-primary);
    color: white;
}

.about-cta {
    text-align: center;
    padding: 3rem 0;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn--light {
    background-color: white;
    color: var(--color-primary);
}

.btn--light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--small {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .bio-highlights, 
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bio-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bio-image {
        flex: 0 0 300px;
        margin-bottom: 2rem;
    }
    
    .vision-programs {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .previous-positions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bio-highlights, 
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -2rem;
    }
    
    .vision-content h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .vision-quote p {
        font-size: 1.25rem;
    }
}

.disclaimer-text {
    text-align: center;
    font-size: 1rem;
    color: white;
    margin-top: 3rem;
    font-style: italic;
}

/* Pricing Section Styles */
.pricing-section {
    text-align: center;
    margin-top: 3rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
}

.current-price {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-section p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.btn--large {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}



@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* CTA Buttons Layout */
.pricing-section .cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section .btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.pricing-section .btn--secondary:hover {
    background-color: #ff6b35;
    color: white;
    border: 2px solid transparent;
}

@media (max-width: 768px) {
    .pricing-section .cta-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Registration Page Styles */
.registration-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.registration-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.registration-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.registration-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.registration-form-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.registration-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.address-type {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.fee-table th,
.fee-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

.fee-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.bank-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.bank-details h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.bank-info p {
    margin-bottom: 0.5rem;
}

.terms-content {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.terms-content ul {
    margin-left: 1rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.form-submit {
    text-align: center;
    padding-top: 2rem;
}

/* Registration Responsive Design */
@media (max-width: 768px) {
    .registration-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-header h1 {
        font-size: 1.5rem;
    }
    
    .registration-header h2 {
        font-size: 2rem;
    }
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group .checkbox-label {
    margin-bottom: 0;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert i {
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Website input group styling */
.website-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.website-prefix {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-right: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 0.9rem;
    white-space: nowrap;
}

.website-input-group input {
    border: none;
    border-radius: 0;
    flex: 1;
    margin: 0;
}

.website-input-group input:focus {
    border: none;
    box-shadow: none;
}

.website-input-group:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Terms and Conditions Styling */
.terms-content {
    margin-bottom: 2rem;
}

.benefits-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.benefits-notice h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-notice p {
    margin: 0;
    line-height: 1.6;
}

.subscription-terms,
.arbitration-terms {
    margin-bottom: 2rem;
}

.subscription-terms h4,
.arbitration-terms h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.terms-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.terms-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-box p:last-child {
    margin-bottom: 0;
}

.eligibility-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.eligibility-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.arbitration-details {
    background-color: white;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 4px solid #ff6b35;
}

.arbitration-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.terms-checkboxes {
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.terms-checkboxes .form-group {
    margin-bottom: 1.5rem;
}

.terms-checkboxes .form-group:last-child {
    margin-bottom: 0;
}

.terms-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #ff6b35;
}

.terms-link:hover {
    color: #e55a2b;
    border-bottom-style: solid;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-notice,
    .terms-box,
    .terms-checkboxes {
        padding: 1rem;
    }
    
    .subscription-terms h4,
    .arbitration-terms h4 {
        font-size: 1rem;
    }
}

/* Pricing reminder in bank details */
.pricing-reminder {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.amount-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.strike-price {
    font-size: 1.2rem;
    color: #dc3545;
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 1.5rem;
    color: #28a745;
    font-weight: 800;
}

.savings {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .amount-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .strike-price {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
}

/* Hero Coach Intro Styles */
.hero__coach-intro {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.coach-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coach-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.credential-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Updated Hero Stats */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero__coach-intro {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .coach-avatar {
        width: 100px;
        height: 100px;
    }

    .coach-credentials {
        justify-content: center;
    }

    .credential-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__tags {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Events Page Styles */
.events-section {
    padding: var(--space-lg) 0;
    background: var(--clr-background);
}

.events-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.events-header .section__title {
    margin-bottom: var(--space-sm);
}

.events-header .section__subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* Event Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.category-card {
    background: var(--clr-white);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
}

.category-card__icon i {
    font-size: 2rem;
    color: var(--clr-white);
}

.category-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--clr-text-dark);
}

.category-card p {
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* Programs Page Styles */
.program-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.program-header .section__title {
    margin-bottom: var(--space-sm);
}

.program-header .section__subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.program-content {
    max-width: 1000px;
    margin: 0 auto;
}

.program-description {
    background: var(--clr-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program-description h3 {
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-600);
}

.program-description p {
    color: var(--clr-text-dark);
    line-height: 1.7;
    font-size: var(--fs-500);
}

.program-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Program Comparison Table */
.comparison-table {
    background: var(--clr-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: var(--space-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: var(--clr-white);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    font-size: var(--fs-500);
}

.comparison-row .comparison-cell:first-child {
    background: #f8fafc;
    font-weight: 600;
    justify-content: flex-start;
    text-align: left;
}

.comparison-row .comparison-cell:not(:first-child) {
    color: var(--clr-text-dark);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.resource-card {
    background: var(--clr-white);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.resource-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #e91e63 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-card__icon i {
    font-size: 1.5rem;
    color: var(--clr-white);
}

.resource-card__content {
    flex: 1;
}

.resource-card__content h3 {
    margin-bottom: var(--space-xs);
    color: var(--clr-text-dark);
    font-size: var(--fs-500);
}

.resource-card__content p {
    color: var(--clr-text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.resource-card .btn {
    padding: 0.5em 1em;
    font-size: var(--fs-300);
}

/* Overview Grid for Programs Page */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.overview-card {
    background: var(--clr-white);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.overview-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clr-accent) 0%, #00d4aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
}

.overview-card__icon i {
    font-size: 2rem;
    color: var(--clr-text-dark);
}

.overview-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--clr-text-dark);
}

.overview-card p {
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* Instagram Reels Section */
.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.instagram-reel-card {
    background: var(--clr-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.reel-embed {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 440px;
}

.reel-embed iframe {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reel-info {
    padding: var(--space-md);
}

.reel-info h3 {
    color: var(--clr-text-dark);
    margin-bottom: var(--space-xs);
    font-size: var(--fs-500);
    font-weight: 600;
}

.reel-date {
    color: var(--clr-primary);
    font-weight: 500;
    font-size: var(--fs-300);
    margin-bottom: var(--space-xs);
}

.reel-description {
    color: var(--clr-text-light);
    line-height: 1.6;
    font-size: var(--fs-400);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .categories-grid,
    .resources-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-reels-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .reel-embed {
        min-height: 400px;
    }
    
    .reel-embed iframe {
        width: 280px;
        height: 380px;
    }
    
    .comparison-table {
        font-size: var(--fs-300);
    }
    
    .comparison-cell {
        padding: var(--space-sm);
        min-height: 50px;
    }
    
    .resource-card {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-card__icon {
        margin: 0 auto var(--space-sm);
    }
    
    .program-description {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-row .comparison-cell:first-child {
        background: var(--clr-primary);
        color: var(--clr-white);
        justify-content: center;
        text-align: center;
    }
    
    .reel-embed iframe {
        width: 260px;
        height: 360px;
    }
    
    .reel-info {
        padding: var(--space-sm);
    }
}

/* Hero Section Two-Column Layout */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

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

.hero__photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__photo {
    order: -1;
    margin-bottom: 1rem;
  }
  .hero__content {
    text-align: center;
  }

  .hero__photo img {
    max-width: 340px;
  }
}

/* Navigation Dropdown Styles */
.nav__dropdown {
  position: relative;
}

.nav__dropdown > .nav__link {
  display: flex;
  align-items: center;
  gap: 0.3em;
  cursor: pointer;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border-radius: 8px;
  z-index: 100;
  padding: 0.5em 0;
}

.nav__dropdown:hover > .nav__dropdown-menu,
.nav__dropdown:focus-within > .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.75em 1.5em;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav__dropdown-menu a:hover {
  background: var(--clr-primary-light, #f0f4ff);
  color: var(--clr-primary, #2D3FE7);
}

@media (max-width: 991px) {
  .nav__dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .nav__dropdown-menu a {
    padding: 0.75em 1em 0.75em 2.5em;
    background: none;
  }
  .nav__dropdown:hover > .nav__dropdown-menu,
  .nav__dropdown:focus-within > .nav__dropdown-menu {
    display: block;
  }
}

/* --- Did You Know Section --- */
.did-you-know-section {
  background: linear-gradient(120deg, #e0f7fa 0%, #f0f7fa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(45, 63, 231, 0.07);
  padding: 2.5rem 1.5rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
}
.did-you-know-section h2 {
  color: #2D3FE7;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.did-you-know-section .section__subtitle {
  color: #1A1B1E;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.did-you-know-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto 2rem auto;
  padding: 0;
  list-style: none;
  max-width: 700px;
}
.did-you-know-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1B1E;
  display: flex;
  align-items: center;
  gap: 0.7em;
  border-left: 5px solid #FFD600;
  position: relative;
}
.did-you-know-list li strong {
  color: #2D3FE7;
  font-size: 1.4em;
  margin-right: 0.2em;
}
.did-you-know-icon {
  color: #FFD600;
  font-size: 1.5em;
  margin-right: 0.5em;
}
@media (max-width: 700px) {
  .did-you-know-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .did-you-know-list li {
    min-width: 0;
    width: 100%;
    font-size: 1.1rem;
  }
}

/* ===================================
   MOBILE COUNTDOWN TIMER STYLES
   Used on: pan-india.html, ncr.html
   =================================== */

.mobile-countdown-timer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    z-index: 1000;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: countdown-pulse 2s infinite;
}

@media (min-width: 768px) {
    .mobile-countdown-timer {
        display: none;
    }
}

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

.countdown-text {
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

.countdown-text i {
    margin-right: 5px;
    animation: countdown-blink 1s infinite;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 35px;
}

.countdown-number {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 30px;
}

.countdown-label {
    font-size: 9px;
    margin-top: 2px;
    opacity: 0.9;
}

.countdown-separator {
    font-size: 16px;
    font-weight: bold;
    margin: 0 2px;
}

@keyframes countdown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes countdown-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

/* Adjust body padding when countdown is visible */
body.countdown-active {
    padding-top: 80px;
}

@media (max-width: 767px) {
    body.countdown-active {
        padding-top: 80px;
    }
}

/* ===================================
   CHATBOT WIDGET STYLES
   Used on: ncr.html
   =================================== */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Manrope', sans-serif;
}

.chatbot-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    animation: chatbot-pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
}

.chatbot-toggle-icon {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.chatbot-notification {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.chatbot-notification::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: #333;
}

.chatbot-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.chatbot-window.show {
    display: flex;
    animation: chatbot-slide-up 0.3s ease;
}

.chatbot-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 28px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-header-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-status i {
    color: #28a745;
    font-size: 8px;
}

.chatbot-minimize {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.chatbot-minimize:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f9fa;
    max-height: 300px;
}

.message {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    animation: message-slide-in 0.3s ease;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    flex: 1;
    background: white;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: #007bff;
    color: white;
}

.user-message .message-avatar {
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

.chatbot-quick-actions {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-action-btn {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.quick-action-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.chatbot-input-container {
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chatbot-typing {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #e0e0e0;
}

.typing-indicator {
    display: flex;
    gap: 3px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #007bff;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-text {
    font-size: 12px;
    color: #666;
}

.chatbot-input {
    display: flex;
    padding: 12px 16px;
    gap: 8px;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chatbot-input input:focus {
    border-color: #007bff;
}

.chatbot-input button {
    width: 36px;
    height: 36px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.chatbot-input button:hover {
    background: #0056b3;
}

.chatbot-input button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.chatbot-footer {
    padding: 8px 16px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.chatbot-footer small {
    color: #666;
    font-size: 11px;
}

/* Chatbot Animations */
@keyframes chatbot-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 123, 255, 0.5); }
}

@keyframes chatbot-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes message-slide-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Chatbot Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 20px;
        right: 15px;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        height: 450px;
        right: -15px;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
    }

    .chatbot-toggle-icon {
        font-size: 22px;
    }

    .chatbot-input input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .quick-action-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-height: 44px; /* Better touch target */
    }

    .lang-btn {
        min-height: 32px;
        min-width: 32px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        bottom: 10px;
        right: 10px;
    }

    .chatbot-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        right: -10px;
        bottom: 70px;
    }

    .chatbot-toggle {
        width: 45px;
        height: 45px;
    }

    .chatbot-toggle-icon {
        font-size: 18px;
    }

    .chatbot-messages {
        max-height: calc(100vh - 250px);
    }

    .chatbot-notification {
        display: none; /* Hide notification on very small screens */
    }
}