/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#languageSelect {
    background: transparent;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    color: #333;
    min-width: 80px;
}

#languageSelect:focus {
    background: rgba(74, 144, 226, 0.1);
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 990;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Who Section */
.who-section {
    padding: 80px 0;
    background: white;
}

.who-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Program Section */
.program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.program-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.program-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.track {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.track h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.track ul {
    list-style: none;
}

.track li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.track li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
}

.all-students {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.all-students h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.benefit i {
    font-size: 1.5rem;
    color: #00d4aa;
}

/* Enhanced Program Section Styles */
.program-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.overview-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

.track-description {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.program-benefits {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
}

.program-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.schedule-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.day-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.day-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.subject {
    font-weight: 500;
    color: #333;
}

.rest-day {
    border-left-color: #00d4aa;
    text-align: center;
}

.rest-message {
    font-size: 1.5rem;
    color: #00d4aa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #666;
    font-size: 1.1rem;
}

.payment-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

/* Schedule section note */
.schedule-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

/* Combo package note */
.combo-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* Dates Section */
.dates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dates-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.date-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.date-item i {
    font-size: 2rem;
    color: #00d4aa;
}

.date-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.date-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-cta {
    background: white;
    color: #ff6b6b;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}

/* Plan Detail Pages Styles */
.plan-detail {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.plan-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plan-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.plan-price .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 2.5rem;
    margin-right: 1rem;
}

.plan-price .new-price {
    color: #ff6b6b;
    font-size: 4rem;
}

.plan-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.plan-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.plan-schedule {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.schedule-table {
    margin-top: 2rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: 150px 150px 1fr;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

.schedule-row .day {
    font-weight: 600;
    color: #333;
}

.schedule-row .time {
    color: #667eea;
    font-weight: 500;
}

.schedule-row .subject {
    color: #666;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #333;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
    font-size: 1.2rem;
}

.plan-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.plan-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-register {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Combo Package Specific Styles */
.combo-advantage {
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.advantage-card i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.combo-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.combo-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.combo-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.combo-section ul {
    list-style: none;
    padding: 0;
}

.combo-section li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.combo-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
}

.combo-bonus {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.combo-bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.combo-bonus ul {
    list-style: none;
    padding: 0;
}

.combo-bonus li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.combo-bonus li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

.combo-price-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.combo-price-highlight .old-price {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.combo-price-highlight .new-price {
    color: #00d4aa;
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.savings {
    background: #00d4aa;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    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: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.submit-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

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

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

/* Registration Page Styles */
.registration-section {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.registration-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.registration-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.registration-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.plan-selection {
    margin-bottom: 3rem;
}

.plan-selection h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.plan-selection .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-selection .pricing-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.plan-selection .pricing-card.selected {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.plan-selection .pricing-card .plan-check {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #667eea;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-selection .pricing-card.selected .plan-check {
    opacity: 1;
}

.registration-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.registration-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.submit-message {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

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

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

.registration-contact {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.registration-contact h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.contact-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #764ba2;
}

/* Privacy Policy Checkbox Styling - Simplified and Working */
.privacy-policy-group {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(102, 126, 234, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.privacy-policy-group:hover {
    background: rgba(102, 126, 234, 0.06);
    border-color: rgba(102, 126, 234, 0.25);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
}

.checkbox-wrapper:hover .checkbox-custom {
    border-color: #667eea;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
}

.checkbox-wrapper input:checked + .checkbox-custom {
    background-color: #667eea;
    border-color: #667eea;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.4);
}

.checkbox-wrapper input:focus + .checkbox-custom {
    outline: 2px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-wrapper input:checked + .checkbox-custom:after {
    display: block;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: rotate(45deg) scale(0);
    }
    50% {
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        transform: rotate(45deg) scale(1);
    }
}

.checkbox-text {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: baseline;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Privacy Policy Modal Styling */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.privacy-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.privacy-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.privacy-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.privacy-close:hover,
.privacy-close:focus {
    opacity: 0.7;
}

.privacy-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.privacy-content h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.privacy-content h3:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Privacy Policy Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-policy-group {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .checkbox-wrapper {
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .checkbox-custom {
        width: 20px;
        height: 20px;
        margin-top: 1px;
    }
    
    .checkbox-custom:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 9px;
    }
    
    .checkbox-text {
        line-height: 1.5;
    }
    
    .privacy-modal-content {
        margin: 10% auto 5%;
        width: 95%;
        max-height: 85vh;
    }
    
    .privacy-modal-header {
        padding: 15px 20px;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .privacy-close {
        font-size: 24px;
    }
    
    .privacy-modal-body {
        padding: 20px;
        max-height: 65vh;
    }
    
    .privacy-content h3 {
        font-size: 1.1rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .checkmark {
        height: 18px;
        width: 18px;
    }
    
    .privacy-text {
        line-height: 1.4;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Language selector mobile */
    .language-selector {
        top: 15px;
        right: 15px;
        z-index: 1100;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 3px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        transform: scale(0.9);
    }
    
    #languageSelect {
        padding: 6px 12px;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 15px;
        min-width: 70px;
    }
    
    /* Header mobile */
    .header {
        padding: 0.8rem 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .nav li {
        width: 100%;
        font-size: 1rem;
    }
    
    .nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    
    /* Video section mobile */
    .video-section {
        padding: 60px 0;
    }
    
    .video-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .video-container {
        margin: 0 10px;
        border-radius: 10px;
    }
    
    /* Who section mobile */
    .who-section {
        padding: 60px 0;
    }
    
    .who-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .who-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card p {
        font-size: 1rem;
    }
    
    /* Program section mobile */
    .program-section {
        padding: 60px 0;
    }
    
    .program-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .program-tracks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .track-card {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .track-card h3 {
        font-size: 1.3rem;
    }
    
    .track-card p {
        font-size: 0.95rem;
    }
    
    /* Benefits section mobile */
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit h3 {
        font-size: 1.2rem;
    }
    
    /* Schedule section mobile */
    .schedule-section {
        padding: 60px 0;
    }
    
    .schedule-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .day-card {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .day-card h3 {
        font-size: 1.2rem;
    }
    
    /* Pricing section mobile */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        margin: 0 10px;
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0 10px;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .pricing-card .price {
        font-size: 2.5rem;
    }
    
    /* Dates section mobile */
    .dates-section {
        padding: 60px 0;
    }
    
    .dates-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .dates-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .date-item {
        margin: 0 10px;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .date-item i {
        font-size: 2.5rem;
    }
    
    /* FAQ section mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .faq-items {
        margin: 0 10px;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-answer.active {
        padding: 1rem 1.5rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0 10px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Plan detail pages mobile */
    .plan-detail {
        padding: 100px 0 60px;
    }
    
    .plan-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .plan-price {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .plan-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .schedule-table {
        margin: 0 10px;
    }
    
    .schedule-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .schedule-row .day {
        font-weight: 600;
        color: #667eea;
    }
    
    .benefits-list {
        margin: 0 10px;
    }
    
    .benefits-list li {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .plan-cta {
        padding: 2rem 10px;
    }
    
    .plan-cta h2 {
        font-size: 1.8rem;
    }
    
    .plan-cta p {
        font-size: 1rem;
    }
    
    /* Combo sections mobile */
    .combo-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .combo-section {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    /* Language Selector Mobile */
    .language-selector {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1100;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 3px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        transform: scale(0.9);
    }
    
    #languageSelect {
        padding: 6px 12px;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 15px;
        min-width: 70px;
    }
    
    /* Registration form mobile */
    .registration-section {
        padding: 120px 0 60px;
    }
    
    .registration-header {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .registration-header h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .registration-header p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 0;
    }
    
    /* Plan Selection Mobile */
    .plan-selection {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .plan-selection h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .pricing-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }
    
    .pricing-card {
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid #e0e0e0;
        background: white;
    }
    
    .pricing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-card.selected {
        border-color: #667eea;
        background: rgba(102, 126, 234, 0.05);
    }
    
    .pricing-card.featured {
        border-color: #f39c12;
        background: rgba(243, 156, 18, 0.05);
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-card .price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 1rem;
    }
    
    .pricing-card .plan-features {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .pricing-card .plan-features li {
        margin-bottom: 0.5rem;
        padding-left: 0.5rem;
    }
    
    .plan-check {
        display: none;
        position: absolute;
        top: 15px;
        right: 15px;
        color: #667eea;
        font-size: 1.5rem;
    }
    
    .pricing-card.selected .plan-check {
        display: block;
    }
    
    .registration-form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 15px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .registration-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        font-size: 1rem;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
        background: white;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .form-group select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 20px;
        padding-right: 40px;
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 100px;
        font-family: 'Poppins', sans-serif;
    }
    
    .btn-submit {
        width: 100%;
        font-size: 1.1rem;
        padding: 16px;
        border-radius: 12px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }
    
    .btn-submit:active {
        transform: translateY(0);
    }
    
    .submit-message {
        text-align: center;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .submit-message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .submit-message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    /* Registration Contact Mobile */
    .registration-contact {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
        background: #f8f9fa;
        border-radius: 12px;
        text-align: center;
    }
    
    .registration-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #333;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 0.9rem;
        color: #666;
    }
    
    .contact-item i {
        color: #667eea;
        font-size: 1.1rem;
    }
    
    .contact-item a {
        color: #667eea;
        text-decoration: none;
    }
    
    .contact-item a:hover {
        text-decoration: underline;
    }
    
    /* Modal mobile */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }
}

/* Extra small mobile styles (480px and below) */
@media (max-width: 480px) {
    .language-selector {
        top: 10px;
        right: 10px;
        transform: scale(0.85);
    }
    
    #languageSelect {
        padding: 5px 10px;
        font-size: 0.8rem;
        min-width: 65px;
    }
    
    .registration-section {
        padding: 110px 0 50px;
    }
    
    .registration-header h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .registration-header p {
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.2rem;
    }
    
    .pricing-card .price {
        font-size: 1.6rem;
    }
    
    .pricing-card .plan-features {
        font-size: 0.85rem;
    }
    
    .registration-form-container {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .registration-form-container h2 {
        font-size: 1.4rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px 14px;
    }
    
    .btn-submit {
        font-size: 1rem;
        padding: 14px;
    }
    
    .registration-contact {
        margin: 1.5rem 0.5rem 0;
        padding: 1.2rem;
    }
    
    .contact-info {
        gap: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    /* Form focus improvements for mobile */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        transform: none;
        box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
    }
    
    /* Improve touch targets */
    .pricing-card {
        min-height: 200px;
        position: relative;
    }
    
    .plan-check {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    
    /* Better button spacing */
    .btn-submit {
        margin-top: 1.5rem;
        border-radius: 10px;
    }
    
    /* Improved select dropdown for mobile */
    .form-group select {
        background-size: 18px;
        padding-right: 35px;
        background-position: right 10px center;
    }
}

/* Additional mobile styles for smaller screens */
@media (max-width: 480px) {
    .nav {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .language-selector {
        right: 60px !important;
        top: 10px !important;
    }
    
    .hamburger {
        z-index: 1200 !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.pricing-card,
.day-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for video */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid #667eea;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Emoji animations */
.emoji {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Professional Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ff6b6b;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ff6b6b;
}

.nav {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* Professional Mobile Navigation */
@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: 70px;
        z-index: 1200;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 3px 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }
    
    #languageSelect {
        padding: 5px 10px;
        font-size: 0.9rem;
        min-width: 70px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transform: translateX(100%);
        padding: 80px 0 40px 0;
        z-index: 1100;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }
    
    .nav li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(50px);
        opacity: 0;
        animation: none;
    }
    
    .nav.active li {
        animation: slideInFromRight 0.6s ease forwards;
    }
    
    .nav.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav.active li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav a {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 20px 0;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .nav a:hover {
        color: #4facfe;
        transform: translateX(10px);
        text-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
    }
    
    .nav a::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #4facfe, #00f2fe);
        transition: width 0.3s ease;
    }
    
    .nav a:hover::before {
        width: 15px;
    }
    
    /* Mobile Menu Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
}

/* Slide in animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Video Reel Section */
.video-reel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.video-reel-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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.15"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.video-reel-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.video-reel-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-reel-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    perspective: 1000px;
}

.reel-card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.reel-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(102, 126, 234, 0.3);
}

.reel-video-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Instagram Reel Preview Styling */
.instagram-reel-preview {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.instagram-reel-background {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d, #ff8a65);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.instagram-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 58, 180, 0.9) 0%, 
        rgba(253, 29, 29, 0.8) 25%, 
        rgba(252, 176, 64, 0.8) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.instagram-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.instagram-logo {
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.instagram-logo i {
    font-size: 4rem;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.instagram-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.instagram-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.instagram-play-button i {
    color: #833ab4;
    font-size: 28px;
    margin-left: 4px;
}

.reel-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.reel-card:hover .reel-overlay {
    opacity: 1;
    pointer-events: all;
}

.reel-card.playing .reel-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.play-button i {
    color: #667eea;
    font-size: 24px;
    margin-left: 4px;
}

.reel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.reel-profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    border: 2px solid #fff;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.profile-info p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 2px 0 0 0;
}

.reel-description p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 10px 0;
}

.reel-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.reel-actions {
    position: absolute;
    right: 15px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.reel-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.reel-action:hover {
    transform: scale(1.1);
}

.reel-action i {
    font-size: 28px;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.reel-action span {
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.reel-action.likes.liked i {
    color: #ff3040;
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Floating heart animation */
@keyframes floatHeart {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0;
    }
}

/* Toast notification */
@keyframes toastFadeInOut {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    10%, 90% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-reel-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .reel-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .reel-video-container {
        height: 500px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .reel-actions {
        right: 10px;
        bottom: 60px;
        gap: 12px;
    }
    
    .reel-action i {
        font-size: 24px;
    }
    
    .reel-content {
        padding: 15px;
    }
}

/* Instagram Reel Styles */
.instagram-reel-preview {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.instagram-reel-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(131, 58, 180, 0.8) 0%,
        rgba(253, 29, 29, 0.8) 50%,
        rgba(252, 176, 64, 0.8) 100%
    );
}

.instagram-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.instagram-logo {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.instagram-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.instagram-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.instagram-play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.instagram-play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.instagram-play-button i {
    font-size: 24px;
    margin-left: 4px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Updated play button for Instagram */
.reel-overlay .play-button {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 5px;
}

.reel-overlay .play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.reel-overlay .play-button i {
    color: #E4405F;
    font-size: 24px;
}

.reel-overlay .play-button span {
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .reel-card {
        max-width: 320px;
    }
    
    .reel-video-container {
        height: 450px;
    }
    
    .video-reel-section h2 {
        font-size: 1.8rem;
    }
    
    .instagram-logo {
        font-size: 3rem;
    }
    
    .instagram-content h3 {
        font-size: 1.2rem;
    }
    
    .instagram-content p {
        font-size: 0.9rem;
    }
}

/* Enhanced Instagram Reel Styles */
.instagram-reel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.reel-device {
    width: 350px;
    height: 700px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 35px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 0 8px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-device:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 0 0 8px rgba(255, 255, 255, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.15),
        0 0 50px rgba(131, 58, 180, 0.3);
}

.reel-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.reel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.reel-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reel-logo i {
    font-size: 24px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reel-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.reel-header-right i {
    color: white;
    font-size: 20px;
}

.reel-content-main {
    height: calc(100% - 120px);
    position: relative;
    cursor: pointer;
}

.reel-video-preview {
    width: 100%;
    height: 100%;
    position: relative;
    background: radial-gradient(circle at 30% 40%, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d, #ff8a65);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 58, 180, 0.4) 0%, 
        rgba(253, 29, 29, 0.3) 25%, 
        rgba(252, 176, 64, 0.3) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(1px);
}

.play-button-center {
    position: relative;
    z-index: 2;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.play-icon:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.play-icon i {
    color: #333;
    font-size: 28px;
    margin-left: 4px;
}

.play-ripple {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.content-overlay {
    position: absolute;
    bottom: 80px;
    left: 20px;
    right: 20px;
    z-index: 3;
}

.content-text {
    text-align: center;
    color: white;
}

.content-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.reel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reel-badge i {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reel-profile-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #1da1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.verified-badge i {
    color: white;
    font-size: 8px;
}

.profile-details h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.profile-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    margin: 2px 0 0 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.follow-button {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.3);
}

.follow-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(131, 58, 180, 0.4);
}

.reel-actions-sidebar {
    position: absolute;
    right: 15px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 4;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-item:hover {
    transform: scale(1.1);
}

.action-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

.action-icon i {
    color: white;
    font-size: 18px;
}

.action-count {
    color: white;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.reel-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-item.active {
    opacity: 1;
    color: white;
}

.nav-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-item i {
    font-size: 20px;
    color: white;
}

.nav-item span {
    font-size: 10px;
    color: white;
    font-weight: 500;
}

.reel-cta-section {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-watch-reel {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-watch-reel:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(131, 58, 180, 0.6),
        0 0 20px rgba(253, 29, 29, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-watch-reel:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-watch-reel:hover .btn-shine {
    left: 100%;
}

.btn-register {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
    text-decoration: none;
    color: white;
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-register:active {
    transform: translateY(0px) scale(0.98);
    transition: all 0.1s ease;
}

.social-proof {
    margin-top: 30px;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .instagram-reel-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .reel-device {
        width: 300px;
        height: 600px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-stats {
        gap: 20px;
    }
    
    .stat-item strong {
        font-size: 1.4rem;
    }
}

/* Enhanced Video Section Animations */
.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.reel-device {
    animation: deviceGlow 4s ease-in-out infinite;
}

@keyframes deviceGlow {
    0%, 100% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.6),
            0 0 0 8px rgba(255, 255, 255, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.6),
            0 0 0 8px rgba(255, 255, 255, 0.15),
            inset 0 0 20px rgba(255, 255, 255, 0.15),
            0 0 30px rgba(131, 58, 180, 0.4);
    }
}

.btn-watch-reel .btn-content {
    animation: contentPulse 2s ease-in-out infinite;
}

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

/* Additional hover effects for action items */
.action-item:hover .action-icon {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.3);
}

.action-item:hover .action-count {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Enhanced section header */
.video-reel-section .section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Instagram-Style Button Section */
.instagram-button-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.instagram-button-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(69, 183, 209, 0.3) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.instagram-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Phone Container */
.phone-container {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 380px;
    height: 750px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateY(2deg); }
    50% { transform: translateY(0px) rotateY(0deg); }
    75% { transform: translateY(-5px) rotateY(-2deg); }
}

.phone-frame:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(131, 58, 180, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

/* Instagram Header */
.ig-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.ig-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
}

.ig-logo i {
    font-size: 24px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ig-camera-icon, .ig-search {
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ig-camera-icon:hover, .ig-search:hover {
    transform: scale(1.1);
    color: #fd1d1d;
}

/* Video Content */
.video-content {
    height: calc(100% - 110px);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-background {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d, #ff8a65);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    position: relative;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 58, 180, 0.6) 0%, 
        rgba(253, 29, 29, 0.4) 25%, 
        rgba(252, 176, 64, 0.4) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    z-index: 3;
}

.play-button-main {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button-main:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button-main i {
    font-size: 32px;
    color: #333;
    margin-left: 4px;
}

.play-ripple {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: rippleEffect 2s ease-out infinite;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-text {
    text-align: center;
    color: white;
    max-width: 280px;
}

.video-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.video-text p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Profile Info at Bottom */
.profile-info-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    position: relative;
    width: 45px;
    height: 45px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
}

.verified-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #1da1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.verified-check i {
    color: white;
    font-size: 9px;
}

.profile-text h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.profile-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    margin: 2px 0 0 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.follow-btn {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 100%);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.5);
}

/* Side Actions */
.side-actions {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 4;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.action-icon i {
    color: white;
    font-size: 20px;
}

.action-count {
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Bottom Navigation */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item:hover {
    color: white;
    transform: translateY(-2px);
}

/* CTA Side */
.cta-side {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.watch-reel-btn {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.watch-reel-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(131, 58, 180, 0.6),
        0 0 30px rgba(253, 29, 29, 0.4);
}

.watch-reel-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.watch-reel-btn:hover .btn-glow {
    left: 100%;
}

.register-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.register-btn:active {
    transform: translateY(0px) scale(0.98);
    transition: all 0.1s ease;
}

/* Instagram Video Showcase Styles */
.instagram-video-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.instagram-video-button {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
        0 20px 40px rgba(131, 58, 180, 0.3),
        0 0 60px rgba(253, 29, 29, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
    min-height: 400px;
}

.instagram-video-button:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(131, 58, 180, 0.4),
        0 0 80px rgba(253, 29, 29, 0.3);
}

.video-preview {
    position: relative;
}

.video-background {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.content-layer {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.instagram-logo {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.video-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.video-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

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

.profile-details {
    text-align: left;
}

.username {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 15px;
}

.hashtags span {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    margin-bottom: 20px;
}

.video-stats .views {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.video-stats .time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-icon:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 0 12px rgba(255, 255, 255, 0.15);
}

.play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4;
}

.instagram-video-button:hover .hover-overlay {
    opacity: 1;
}

.hover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
}

.hover-content i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.hover-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.cta-section {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-register-main {
    background: linear-gradient(135deg, #fd1d1d 0%, #fcb045 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-register-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(253, 29, 29, 0.5),
        0 0 30px rgba(252, 176, 69, 0.4);
}

.btn-register-main .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-register-main:hover .btn-glow {
    left: 100%;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .instagram-showcase {
        flex-direction: column;
        gap: 60px;
    }
    
    .instagram-video-showcase {
        gap: 40px;
    }
    
    .instagram-video-button {
        max-width: 600px;
        padding: 20px;
        min-height: 350px;
    }
    
    .content-layer {
        padding: 25px;
        min-height: 300px;
    }
    
    .video-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
    }
    
    .phone-frame {
        width: 320px;
        height: 650px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .cta-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .instagram-button-section {
        padding: 60px 0;
    }
    
    .instagram-video-showcase {
        gap: 30px;
    }
    
    .instagram-video-button {
        padding: 15px;
        max-width: 100%;
        margin: 0 10px;
        min-height: 300px;
    }
    
    .content-layer {
        padding: 20px;
        min-height: 250px;
    }
    
    .video-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .video-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .profile-info {
        padding: 10px;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .profile-avatar {
        width: 35px;
        height: 35px;
    }
    
    .username {
        font-size: 0.9rem;
    }
    
    .description {
        font-size: 0.75rem;
    }
    
    .hashtags {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .hashtags span {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    
    .video-stats {
        margin-bottom: 15px;
    }
    
    .video-stats .views {
        font-size: 0.8rem;
    }
    
    .video-stats .time {
        font-size: 0.7rem;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .play-ripple {
        width: 50px;
        height: 50px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-register-main {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .phone-frame {
        width: 280px;
        height: 580px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .stats-showcase {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .action-buttons {
        gap: 15px;
    }
    
    .watch-reel-btn {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .register-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Debugging styles - remove after testing */
.nav.active {
    border: 2px solid red !important;
}
