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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.highlight {
    color: #E91E63;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E91E63, #FFD700);
    border-radius: 2px;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-logo .logo {
    width: 200px;
    object-fit: contain;
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo h2 {
    color: #E91E63;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-logo span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #E91E63;
}

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

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.cta-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: url('assets/images/hero_background.jpg');
    background-size: cover;
    background-position: center;
}

.brain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(255, 215, 0, 0.1));
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-top: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-offer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.free-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E91E63;
    background: linear-gradient(135deg, #E91E63, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.session-details {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #E91E63;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

/* Problems Section */
.problems {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

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

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
    border-color: #E91E63;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

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

.transformation-message {
    text-align: center;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.transformation-message i {
    color: #FFD700;
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #E91E63;
    margin-bottom: 0.5rem;
}

.credentials {
    font-size: 1.1rem;
    color: #8E24AA;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-description, .experience, .approach {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.credentials-list {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #E91E63;
}

.credential-item i {
    color: #E91E63;
    font-size: 1.2rem;
}

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

/* About Section Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid #E91E63;
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E91E63, #8E24AA);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-stat-card:hover::before {
    transform: scaleX(1);
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
    border-top-color: transparent;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.about-stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.stat-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Framework Section */
.framework {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.framework-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #E91E63;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-letter {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #333;
}

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

/* Results Section */
.results {
    padding: 6rem 0;
    background: white;
}

.results-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.result-item:hover {
    background: white;
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.result-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.result-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8f9fa;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Space for navigation buttons */
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: white;
    min-height: 450px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%; /* 4 slides * 100% each */
}

.carousel-slide {
    min-width: 25%; /* Each slide takes 25% of track width (100% / 4 slides) */
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 450px;
    align-items: center;
    width: 100%;
}

.testimonial-item {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E91E63, #8E24AA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover::before {
    opacity: 1;
}

.whatsapp-message {
    border-left: 4px solid #25D366;
}

.video-testimonial {
    border-left: 4px solid #E91E63;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.client-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    margin-top: 1rem;
    text-align: right;
}

.message-time {
    color: #999;
    font-size: 0.8rem;
}

.video-placeholder {
    position: relative;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 1.2rem;
    margin-left: 3px;
}

.video-overlay {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white;
}

.video-overlay h4 {
    margin: 0;
    font-size: 1rem;
}

.video-overlay span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.whatsapp-testimonial {
    padding: 0;
    background: transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    border-left: 5px solid #E91E63;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    padding: 10px;
    box-sizing: border-box;
}

.whatsapp-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.whatsapp-testimonial:hover .whatsapp-screenshot {
    transform: scale(1.02);
}

/* Video Container Styles */
.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.testimonial-video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 300px;
    object-fit: cover;
    /* Disable zoom and fullscreen functionality */
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.testimonial-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-picture-in-picture-button {
    display: none !important;
}

.video-container .video-overlay {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.video-container .video-overlay h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-container .video-overlay span {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #C2185B, #7B1FA2);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
    left: -30px;
}

.carousel-btn-next {
    right: -30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 3rem;
}

.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-dot.active::before {
    transform: scale(1);
}

.carousel-dot:hover {
    background: #bbb;
    transform: scale(1.2);
}

.carousel-dot.active {
    transform: scale(1.3);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-offer h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFD700;
}

.offer-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.offer-item i {
    color: #FFD700;
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #E91E63;
    padding: 1.5rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

.transformation-quote {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.transformation-quote i {
    color: #FFD700;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #E91E63;
}

.contact-method i {
    color: #E91E63;
    font-size: 1.2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #E91E63;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: #E91E63;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E91E63;
}

.footer-policies h4 {
    color: #E91E63;
    margin-bottom: 1rem;
}

.footer-policies ul {
    list-style: none;
}

.footer-policies li {
    margin-bottom: 0.5rem;
}

.footer-policies a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-policies a:hover {
    color: #E91E63;
}

.footer-policies a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #E91E63, #8E24AA);
    transition: width 0.3s ease;
}

.footer-policies a:hover::after {
    width: 100%;
}

.footer-contact h4 {
    color: #E91E63;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #E91E63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8E24AA;
    transform: translateY(-2px);
}

/* YouTube Icon Special Styling */
.social-link .fa-youtube {
    font-size: 18px;
}

.social-link:has(.fa-youtube) {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-link:has(.fa-youtube):hover {
    background: linear-gradient(135deg, #CC0000, #990000);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 1000;
        gap: 1.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .cta-btn {
        margin-top: 1rem;
        display: inline-block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        min-height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .framework-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-card {
        flex-direction: row;
        text-align: left;
        padding: 2rem;
        gap: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-top: 0;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .offer-details {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .profile-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-btn-prev {
        left: -15px;
    }
    
    .carousel-btn-next {
        right: -15px;
    }
    
    .testimonial-item {
        padding: 1rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .brain-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Landscape mode fixes */
@media (max-width: 1024px) and (orientation: landscape) {
    .header {
        height: 60px;
        padding: 0;
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .nav-logo .logo {
        width: 120px;
        object-fit: contain;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0 1rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
        align-items: center;
        gap: 1rem;
        padding-top: 0.5rem;
        margin-top: 0;
        width: 100%;
        max-width: 1200px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: auto;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
		padding-top: 20px;
    }
    
    .hero-cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .session-details {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }
    
    .profile-container {
        width: 180px;
        height: 180px;
        flex-shrink: 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .framework-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
}

/* Specific landscape fixes for smaller screens */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        height: 55px;
        padding: 0;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .nav-container {
        padding: 0 8px;
        gap: 0.8rem;
    }
    
    .nav-logo .logo {
        width: 100px;
        object-fit: contain;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cta-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 55px 0 0.25rem 0;
        min-height: auto;
    }
    
    .hero-content {
        gap: 0.8rem;
        grid-template-columns: 1.3fr 0.7fr;
        align-items: center;
        height: auto;
        min-height: auto;
        padding-top: 0.5rem;
    }
    
    .hero-text {
        padding-right: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .hero-cta-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
    
    .session-details {
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }
    
    .profile-container {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .framework-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-content h3 {
        font-size: 1.8rem;
    }
    
    .stat-content p {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Testimonials Carousel */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        min-height: auto;
    }
    
    .testimonial-item {
        margin-bottom: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .carousel-btn-prev {
        left: -15px;
    }
    
    .carousel-btn-next {
        right: -15px;
    }
    
    .carousel-dots {
        gap: 10px;
        margin-top: 2rem;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
    }
    
    .testimonial-video {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 0 10px;
    }
    
    .slide-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: -10px;
    }
    
    .carousel-btn-next {
        right: -10px;
    }
    
    .testimonial-video {
        max-height: 200px;
    }
    
    .video-container .video-overlay {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .video-container .video-overlay h4 {
        font-size: 0.8rem;
    }
    
    .video-container .video-overlay span {
        font-size: 0.6rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}




/* === Carousel Updates for 4 Items (3 Images + 1 Video) in 2x2 Layout === */
.carousel-container {
    height: 600px !important;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    width: 100%;
    max-width: 1100px;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    height: 600px;
    box-sizing: border-box;
}

.testimonial-item {
    width: 100%;
    height: 100%;
    padding: 0;
    min-height: 280px;
    max-height: 100%;
}

.testimonial-video,
.whatsapp-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.whatsapp-testimonial img.whatsapp-screenshot {
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.slide-content > .testimonial-item {
    min-height: 0;
    min-width: 0;
}



/* Policy Pages */
.policy-content {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.policy-content .container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 2px solid #E91E63;
    position: relative;
    overflow: hidden;
}

.policy-content .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
}

.policy-content h1 {
    margin-bottom: 40px;
    color: #E91E63;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

.policy-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #E91E63, #8E24AA);
    border-radius: 2px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #333;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #E91E63;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    padding: 0 10px;
}

.policy-content p:first-of-type {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8E24AA;
    margin-bottom: 30px;
}

/* Enhanced footer styling for policy pages */
.policy-content + .footer {
    margin-top: 0;
}

.footer .footer-contact p {
    margin: 5px 0;
    color: #ccc;
}

.footer .footer-contact h4 {
    margin-bottom: 15px;
}


