/* Base Styles */
:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #4895ef;
    --secondary: #4cc9f0;
    --accent: #f72585;
    --accent-light: #ff5c8d;
    --dark: #1f1f1f;
    --light: #ffffff;
    --light-gray: #f8faff;
    --medium-gray: #e9ecf5;
    --text-dark: #1f1f1f;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 60px 0; /* Reduced padding between sections */
    position: relative;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: rgba(67, 97, 238, 0.1);
    transform: translateY(-2px);
}

.btn-cta {
    background:blue;
    color: var(--light);
    font-size: 1.2rem;
    padding: 16px 32px;
    margin: 30px auto;
    display: block;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(247, 37, 133, 0.4);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: var(--transition);
}

.btn-cta:hover::after {
    transform: rotate(30deg) translate(10%, 10%);
}

.btn-cta i {
    margin-right: 10px;
}

.price-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
    display: inline-block;
}

/* Pulse animation for CTA button */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(247, 37, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

/* Header */
header {
    background-color: var(--primary);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification {
    color: var(--light);
    text-align: center;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #f8faff 0%, #e9ecf5 100%);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234361ee' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Headers Section */
.headers-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--primary), var(--accent));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {background-position: 0% 0%;}
    100% {background-position: 200% 0%;}
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero Image */
.hero-image {
    margin-top: 25px;
    position: relative;
    animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.poster-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.poster-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.poster-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(76, 201, 240, 0.2) 100%);
}

.poster-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Workshop Details */
.workshop-details {
    background-color: var(--yellow-light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease-out;
    border-left: 5px solid var(--yellow);
}

.workshop-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--yellow), var(--primary), var(--yellow));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.workshop-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.workshop-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

/* Video Row Section Styles */
.video-row-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.video-row-section .section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.video-row-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.video-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    margin: 15px 0 5px;
    padding: 0 15px;
    color: #333;
}

.video-item p {
    padding: 0 15px 20px;
    color: #666;
    font-size: 0.9rem;
}

.video-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.video-prev, .video-next {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.video-prev:hover, .video-next:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Gallery Grid Section Styles */
.gallery-grid-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.gallery-grid-section .section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    text-align: left;
}

.gallery-caption h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .video-wrapper {
        width: 50%;
    }
    
    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 100%;
    }
    
    .video-navigation {
        display: none;
    }
    
    .gallery-grid-container {
        grid-template-columns: 1fr;
    }
    
    .video-row-section, .gallery-grid-section {
        padding: 60px 0;
    }
}

/* Webinar Details */
.webinar-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .webinar-details {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .webinar-detail {
        flex: 0 0 calc(50% - 10px);
    }
}

.webinar-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.webinar-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.webinar-detail i {
    font-size: 1.5rem;
    color: var(--primary);
    background-color: rgba(67, 97, 238, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.webinar-detail h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.webinar-detail p {
    font-weight: 600;
    margin-bottom: 0;
}

/* Language Box */
.language-box {
    background-color: white;
    border: 2px solid var(--yellow);
    border-radius: var(--border-radius);
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.language-box i {
    color: var(--primary);
}

.language-box span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Timer Section */
.timer-section {
    margin-top: 20px;
    margin-bottom: 25px;
}

.offer-text {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 0;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 15px 10px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--light);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: var(--transition);
}

.countdown-item:hover::after {
    transform: rotate(30deg) translate(10%, 10%);
}

.countdown-item div {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.countdown-item span {
    font-size: 0.8rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.btn-cta i {
    font-size: 1.2rem;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.4);
}

.price-tag {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.seats-left {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Workshop Stats */
.workshop-stats {
    background-color: var(--primary);
    padding: 40px 0;
    color: var(--light);
    margin-top: -1px; /* Remove gap between sections */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.stat-item p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Main Question */
.main-question {
    text-align: center;
    margin-top: -1px; /* Remove gap between sections */
}

.main-question h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    animation: fadeInUp 0.6s ease-out;
}

.main-question h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .pain-points {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-point {
    background-color: var(--light);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.pain-point:nth-child(2) {
    animation-delay: 0.6s;
}

.pain-point:nth-child(3) {
    animation-delay: 0.8s;
}

.pain-point i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.pain-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

.pain-point h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.dont-worry {
    font-size: 1.8rem;
    margin-top: 40px;
    color: var(--accent);
    animation: fadeInUp 0.6s ease-out 1s both;
    text-shadow: 0 2px 10px rgba(247, 37, 133, 0.2);
}

.solution-intro {
    font-size: 1.2rem;
    animation: fadeInUp 0.6s ease-out 1.2s both;
}

.workshop-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin: 20px 0 40px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out 1.4s both;
}

.workshop-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    border-radius: 2px;
}

.benefits-card {
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    text-align: left;
    border-left: 5px solid var(--primary);
    animation: fadeInUp 0.6s ease-out 1.6s both;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.benefits-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    padding: 5px;
    border-radius: var(--border-radius);
}

.benefits-list li:hover {
    background-color: rgba(67, 97, 238, 0.05);
    transform: translateX(5px);
}

.benefits-list i {
    color: var(--primary);
    margin-right: 15px;
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -1px; /* Remove gap between sections */
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bonuses h2 {
    color: var(--light);
    font-size: 2.2rem;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease-out;
}

.bonuses p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .bonus-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.bonus-card:nth-child(2) {
    animation-delay: 0.6s;
}

.bonus-card:nth-child(3) {
    animation-delay: 0.8s;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.bonus-card h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bonus-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Who is this for */
.who-is-this-for {
    text-align: center;
    margin-top: -1px; /* Remove gap between sections */
}

.who-is-this-for h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .audience-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.audience-item {
    background-color: var(--light);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out calc(0.2s * var(--i, 1)) both;
}

.audience-item:nth-child(1) { --i: 1; }
.audience-item:nth-child(2) { --i: 2; }
.audience-item:nth-child(3) { --i: 3; }
.audience-item:nth-child(4) { --i: 4; }
.audience-item:nth-child(5) { --i: 5; }
.audience-item:nth-child(6) { --i: 6; }
.audience-item:nth-child(7) { --i: 7; }
.audience-item:nth-child(8) { --i: 8; }
.audience-item:nth-child(9) { --i: 9; }

.audience-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(76, 201, 240, 0.2) 100%);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.audience-item:hover .audience-icon {
    transform: rotate(10deg);
}

.audience-icon i {
    font-size: 1.8rem;
    color: var(--light);
}

.audience-item p {
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.audience-note {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    color: var(--primary);
    animation: fadeInUp 0.6s ease-out 2s both;
}

/* Host Section */
.host {
    background-color: var(--light-gray);
    margin-top: -1px; /* Remove gap between sections */
}

.host h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.host-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: fadeInUp 0.6s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.host-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent), var(--primary), var(--accent));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@media (min-width: 768px) {
    .host-profile {
        flex-direction: row;
        align-items: flex-start;
    }
}

.host-image {
    width: 200px;
    height: 200px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 5px solid var(--primary-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.host-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.2);
}

.host-image i {
    font-size: 5rem;
    color: var(--primary);
}

.host-info {
    flex: 1;
}

.host-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.host-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.host-bio {
    line-height: 1.8;
}

/* Success Stories */
.success-stories {
    text-align: center;
    margin-top: -1px; /* Remove gap between sections */
}

.success-stories h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.story-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: left;
    position: relative;
    animation: fadeInUp 0.6s ease-out calc(0.2s * var(--i, 1)) both;
    overflow: hidden;
}

.story-card:nth-child(1) { --i: 1; }
.story-card:nth-child(2) { --i: 2; }
.story-card:nth-child(3) { --i: 3; }

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

.story-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}

/* Review screenshots in success stories */
.review-image {
    margin-top: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.review-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
    margin-top: -1px; /* Remove gap between sections */
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out calc(0.15s * var(--i, 1)) both;
}

.accordion-item:nth-child(1) { --i: 1; }
.accordion-item:nth-child(2) { --i: 2; }
.accordion-item:nth-child(3) { --i: 3; }
.accordion-item:nth-child(4) { --i: 4; }

.accordion-header {
   
    background: #4849cc;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(67, 97, 238, 0.05);
}

.accordion-header h3 {
    color: #0f0d0d;
    margin-bottom: 0;
    font-size: 1.2rem;
    /* color: var(--primary-dark); */
}

.accordion-header i {
    /* color: var(--primary); */
    transition: var(--transition);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content p {
    margin-bottom: 0;
    line-height: 1.8;
}

.accordion-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.accordion-content a:hover {
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #353122 0%, #b23413 100%);
    color: var(--light);
    padding: 100px 0;
    position: relative;
    margin-top: -1px; /* Remove gap between sections */
    border-top: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* assuming you toggle with .show */
  justify-content: center;
  align-items: center;
}

.modal-overlay.show {
  display: flex;
}

/* Main modal box */
.modal {
  max-height: 80vh;          /* 👈 important */
  width: 95%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;          /* prevents outer scroll */
}

/* Scrollable area */
.modal-body {
  overflow-y: auto;          /* 👈 enables scroll */
  max-height: calc(90vh - 120px); /* adjust based on header height */
  padding: 16px;
}

.final-cta h2 {
    color: var(--light);
    font-size: 2.8rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.final-cta .divider {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 25px auto;
    position: relative;
}

.final-cta .divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #b23413 0%, #e8a21a 100%);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta .divider span i {
    color: #fff;
    font-size: 1.2rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.6;
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.benefit-item i {
    font-size: 1.8rem;
    color: #ffd64f;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.benefit-item span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-cta {
    background: linear-gradient(45deg, #ff1bc1 0%, #d57a0c 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 94, 20, 0.6);
}

.btn-cta i.fa-arrow-right {
    transition: all 0.3s ease;
}

.btn-cta:hover i.fa-arrow-right {
    transform: translateX(5px);
}

.price-tag {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 5px;
    font-weight: 600;
}

.register-note {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.1rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.limited-note {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badges i {
    color: #ffd64f;
}

.solar-icon-left, .solar-icon-right, .star-icon {
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    color: white;
}

.solar-icon-left {
    top: 20%;
    left: 10%;
    animation: floatAnimation 6s ease-in-out infinite;
}

.solar-icon-right {
    bottom: 20%;
    right: 10%;
    animation: floatAnimation 8s ease-in-out infinite;
}

.star-icon {
    top: 15%;
    right: 20%;
    animation: floatAnimation 4s ease-in-out infinite;
    font-size: 3rem;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .benefits-row {
        gap: 20px;
    }
    
    .solar-icon-left, .solar-icon-right, .star-icon {
        display: none;
    }
    
    .btn-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Pulse animation for button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 94, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Blinking animation for seats left */
.highlight {
    color: var(--accent);
    font-weight: 700;
    animation: blink 1s ease-in-out infinite alternate;
    text-shadow: 0 0 5px rgba(247, 37, 133, 0.3);
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

/* Fixed Bottom CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--light);
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.fixed-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.fixed-cta p {
    margin: 0;
    font-weight: 600;
}

.fixed-cta .highlight {
    color: var(--light);
    animation: blink 1s ease-in-out infinite alternate;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.fixed-cta .btn-cta {
    margin: 0;
    padding: 10px 20px;
    font-size: 1rem;
    background: blue;
    white-space: nowrap;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .countdown-item div {
        font-size: 1.4rem;
    }
    
    .countdown-item span {
        font-size: 0.7rem;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .workshop-title {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .fixed-cta p {
        font-size: 0.9rem;
    }
    
    .fixed-cta .btn-cta {
        padding: 8px 80px;
        font-size: 0.9rem;
    }
}