/* Ensure consistent h1 size in sections to avoid layout shift and deprecated API warning */
section h1 {
  font-size: 2.5rem; /* Adjust as needed for your design */
  line-height: 1.1;
}

/* TODO: Minify this CSS file for better performance. */
/* TODO: Optimize and resize images to match their display size and use WebP/AVIF if possible. */
/* Section 3.5 - Coach Personal Transformation Styles */

        #section3-5 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.14) 0%, rgba(127, 159, 235, 0.09) 100%), #f8f9fa;
            color: #333333;
            min-height: 100vh;
            height: auto;
            padding: 6rem 2rem;
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }

        .coach-transformation-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

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

        .coach-transformation-header h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #333333;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .coach-transformation-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border-radius: 2px;
        }

        .coach-transformation-intro {
            font-size: 1.2rem;
            color: #7F9FEB;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .coach-transformation-description {
            font-size: 1rem;
            color: #666666;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .coach-transformation-showcase {
            margin-top: 4rem;
        }

        .coach-transformation-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(127, 159, 235, 0.2);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .coach-transformation-images {
            width: 100%;
        }

        .coach-before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .coach-image-container {
            position: relative;
            aspect-ratio: 3/4;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .coach-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .coach-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .coach-image-container:hover img {
            transform: scale(1.05);
        }

        .coach-placeholder-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7F9FEB 0%, #7F9FEB 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .coach-image-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 1rem;
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: 1px;
        }

        .coach-transformation-details {
            padding: 1rem;
        }

        .coach-transformation-details h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 2rem;
            text-align: center;
        }

        .coach-transformation-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 2rem;
            background: rgba(127, 159, 235, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(127, 159, 235, 0.2);
        }

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

        .coach-stat-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 900;
            color: #7F9FEB;
            line-height: 1;
        }

        .coach-stat-label {
            font-size: 0.8rem;
            color: #666666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .coach-transformation-testimonial {
            font-size: 1rem;
            line-height: 1.6;
            color: #555555;
            font-style: italic;
            margin: 2rem 0;
            padding: 1.5rem;
            border-left: 4px solid #7F9FEB;
            background: rgba(127, 159, 235, 0.05);
            border-radius: 0 10px 10px 0;
        }

        .coach-journey-highlights {
            margin-top: 2rem;
        }

        .coach-journey-highlights h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1rem;
            text-align: center;
        }

        .coach-journey-highlights ul {
            list-style: none;
            padding: 0;
        }

        .coach-journey-highlights li {
            padding: 0.5rem 0;
            color: #666666;
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .coach-journey-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #7F9FEB;
            font-weight: 700;
        }

        /* Section 7 - Client Transformations Styles */

        #section7 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.08) 0%, rgba(127, 159, 235, 0.05) 100%), #ffffff;
            color: #333333;
            min-height: 100vh;
            height: auto;
            padding: 5rem 2rem;
            transition: all 0.5s ease;
        }

        .client-transformations {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #333333;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #7F9FEB;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666666;
            margin-bottom: 0;
        }

        .transformations-showcase {
            margin-bottom: 4rem;
        }

        .transformation-item {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(127, 159, 235, 0.1);
            box-shadow: 0 8px 30px rgba(127, 159, 235, 0.08);
            transition: all 0.3s ease;
        }

        .transformation-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(127, 159, 235, 0.15);
        }

        .transformation-images {
            margin-bottom: 2rem;
        }

        .before-after-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .image-box {
            position: relative;
            aspect-ratio: 3/4;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-box:hover img {
            transform: scale(1.02);
        }

        .image-tag {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 0.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: 1px;
        }

        .transformation-info {
            text-align: center;
        }

        .transformation-info h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1.5rem;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(127, 159, 235, 0.05);
            border-radius: 15px;
        }

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

        .result-stat .number {
            display: block;
            font-size: 1.4rem;
            font-weight: 800;
            color: #7F9FEB;
            margin-bottom: 0.3rem;
        }

        .result-stat .label {
            font-size: 0.9rem;
            color: #666666;
            font-weight: 600;
        }

        .client-quote {
            font-style: italic;
            font-size: 0.95rem;
            color: #555555;
            line-height: 1.6;
            border-left: 4px solid #7F9FEB;
            padding-left: 1rem;
            margin: 0;
            text-align: left;
            background: rgba(127, 159, 235, 0.03);
            padding: 1rem 1rem 1rem 2rem;
            border-radius: 0 10px 10px 0;
        }

        .success-overview {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: transparent;
            border-radius: 20px;
        }

        .success-overview h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 2rem;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

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

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 900;
            color: #7F9FEB;
            margin-bottom: 0.5rem;
        }

        .stat-text {
            font-size: 0.9rem;
            color: #666666;
            font-weight: 600;
        }

        .transformation-cta {
            text-align: center;
            padding: 2.5rem;
            background: linear-gradient(135deg, #7F9FEB 0%, #7F9FEB 100%);
            border-radius: 20px;
            color: white;
        }

        .transformation-cta h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

        .cta-button {
            display: inline-block;
            background: white;
            color: #7F9FEB;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            color: #7F9FEB;
        }



        .metric-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 900;
            color: #7F9FEB;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .metric-label {
            font-size: 0.9rem;
            color: #666666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .cta-section {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #666666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .transformation-cta-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(127, 159, 235, 0.3);
        }

        .transformation-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .transformation-cta-btn:hover::before {
            left: 100%;
        }

        .transformation-cta-btn:hover {
            background: linear-gradient(45deg, #8fa9ff 0%, #6b8de8 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(127, 159, 235, 0.4);
        }

        /* Footer Styles */
        footer {
            background-color: #000000; /* Pure black to match header */
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #7f9feb;
        }

        footer p {
            font-size: 1rem;
            opacity: 0.8;
            margin: 0;
        }

        /* Footer Contact Form Styles */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }
        
        .footer-left {
            padding-right: 1rem;
        }
        
        .footer-left h3 {
            font-size: 1.6rem;
            font-weight: 900;
            color: #7f9feb;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }
        
        .footer-left p {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }
        
        .footer-description {
            font-size: 0.9rem !important;
            color: #cccccc !important;
            line-height: 1.6;
            margin-top: 1rem;
        }
        
        .footer-right {
            padding-left: 1rem;
        }
        
        .footer-contact-form {
            background: rgba(40, 40, 40, 0.8);
            padding: 1.8rem;
            border-radius: 12px;
            border: 1px solid rgba(127, 159, 235, 0.3);
            width: 100%;
        }
        
        .footer-contact-form h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #7f9feb;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .contact-form-footer {
            width: 100%;
        }
        
        .contact-form-footer .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }
        
        .contact-form-footer .form-group {
            margin-bottom: 1rem;
        }
        
        .contact-form-footer .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.4rem;
        }
        
        .contact-form-footer .form-group input,
        .contact-form-footer .form-group select,
        .contact-form-footer .form-group textarea {
            width: 100%;
            padding: 0.6rem 0.8rem;
            border: 2px solid rgba(127, 159, 235, 0.3);
            border-radius: 6px;
            font-size: 0.85rem;
            color: #ffffff;
            background: rgba(60, 60, 60, 0.8);
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        .contact-form-footer .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        .contact-form-footer .form-group input:focus,
        .contact-form-footer .form-group select:focus,
        .contact-form-footer .form-group textarea:focus {
            outline: none;
            border-color: #7f9feb;
            background: rgba(70, 70, 70, 0.9);
            box-shadow: 0 0 0 3px rgba(127, 159, 235, 0.1);
        }
        
        .contact-form-footer .form-group input::placeholder,
        .contact-form-footer .form-group textarea::placeholder {
            color: #aaaaaa;
        }
        
        .footer-submit-btn {
            width: 100%;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(45deg, #7f9feb 0%, #7f9feb 100%);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }
        
        .footer-submit-btn:hover::before {
            left: 100%;
        }
        
        .footer-submit-btn:hover {
            background: linear-gradient(45deg, #8fa9ff 0%, #6b8de8 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(127, 159, 235, 0.4);
        }
        
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(127, 159, 235, 0.2);
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        /* Dark mode styles for footer form */
        body.dark-mode .footer-contact-form {
            background: rgba(30, 30, 30, 0.9);
            border-color: rgba(127, 159, 235, 0.4);
        }
        
        body.dark-mode .contact-form-footer .form-group input,
        body.dark-mode .contact-form-footer .form-group select,
        body.dark-mode .contact-form-footer .form-group textarea {
            background: rgba(40, 40, 40, 0.8);
            border-color: rgba(127, 159, 235, 0.4);
            color: #ffffff;
        }
        
        body.dark-mode .contact-form-footer .form-group input:focus,
        body.dark-mode .contact-form-footer .form-group select:focus,
        body.dark-mode .contact-form-footer .form-group textarea:focus {
            background: rgba(50, 50, 50, 0.9);
            border-color: #7f9feb;
        }
        
        body.dark-mode .footer-left p {
            color: #ffffff;
        }
        
        body.dark-mode .footer-description {
            color: #cccccc !important;
        }
        
        /* Mobile responsive for footer form */
        @media (max-width: 768px) {
            .footer-content {
                padding: 1.5rem 1rem;
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .footer-left,
            .footer-right {
                padding: 0;
            }
            
            .footer-left {
                text-align: center;
            }
            
            .footer-contact-form {
                padding: 1.5rem;
            }
            
            .contact-form-footer .form-row {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            
            .contact-form-footer .form-group {
                margin-bottom: 0.8rem;
            }
            
            .copyright {
                margin-top: 1rem;
                padding-top: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .footer-content {
                padding: 1.2rem 1rem;
            }
            
            .footer-contact-form {
                padding: 1.2rem;
            }
            
            .footer-contact-form h4 {
                font-size: 1.1rem;
            }
            
            .footer-submit-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
            
            .footer-left h3 {
                font-size: 1.4rem;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --header-height: 0px; /* Will be set by JavaScript */
            --overlay-display: none; /* Control overlay visibility */
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: #000000; /* Pure black background for desktop view */
            color: white;
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
        }
        header.hidden {
            transform: translateY(-100%);
        }
        .logo {
            font-size: 2.25rem;
            font-weight: 900;
            position: relative;
            text-shadow: 0 0 5px #7f9feb, 0 0 15px #7f9feb, 0 0 25px rgba(127, 159, 235, 0.8), 0 0 35px rgba(127, 159, 235, 0.5);
            letter-spacing: 0.5px;
            color: #ffffff;
        }
        .nav-buttons {
            display: flex;
            gap: 1.5rem;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem;
            cursor: pointer;
            transition: color 0.3s, text-shadow 0.3s;
            font-weight: 700;
            position: relative;
        }
        .nav-link:hover {
            color: #FFD700;
        }
        .nav-link:active {
            color: #7F9FEA;
            text-shadow: 0 0 8px rgba(127, 159, 235, 0.7);
        }
        .nav-active {
            color: #7F9FEA !important;
            text-shadow: 0 0 8px rgba(127, 159, 235, 0.5);
        }
        
        /* Responsive styles */
        @media (max-width: 1620px) {
            header {
                flex-direction: column;
                text-align: center;
                gap: 0;
                padding: 0;
            }
            .logo {
                font-size: 2.2rem;
                margin: 0;
                padding: 1.8rem;
                width: 100%;
                background-color: #000000; /* Pure black background */
                text-shadow: 0 0 5px #7f9feb, 0 0 15px #7f9feb, 0 0 25px rgba(127, 159, 235, 0.8), 0 0 35px rgba(127, 159, 235, 0.5);
            }
            .nav-buttons {
                justify-content: center;
                padding: 1.2rem;
                width: 100%;
                background: rgba(127,159,235,0.1);
                border: 1px solid rgba(127,159,235,0.3);
                backdrop-filter: blur(10px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-link {
                padding: 0.5rem 0.8rem;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 1200px) {
            header {
                flex-direction: column;
                text-align: center;
                gap: 0;
                padding: 0;
            }
            .logo {
                font-size: 2rem;
                margin: 0;
                padding: 1.5rem;
                width: 100%;
                background-color: #000000; /* Pure black background */
                text-shadow: 0 0 5px #7f9feb, 0 0 15px #7f9feb, 0 0 25px rgba(127, 159, 235, 0.8), 0 0 35px rgba(127, 159, 235, 0.5);
            }
            .nav-buttons {
                justify-content: center;
                padding: 1rem;
                width: 100%;
                background: rgba(127,159,235,0.1);
                border: 1px solid rgba(127,159,235,0.3);
                backdrop-filter: blur(10px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-link {
                padding: 0.45rem;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 850px) {
            .logo {
                padding: 1.3rem;
                font-size: 1.9rem;
            }
            .nav-buttons {
                padding: 0.9rem;
                gap: 1.2rem;
            }
            .nav-link {
                padding: 0.4rem 0.6rem;
                font-size: 0.93rem;
            }
        }
        
        @media (max-width: 768px) {
            .logo {
                padding: 1.2rem;
                font-size: 1.8rem;
            }
            .nav-buttons {
                padding: 0.8rem;
                gap: 1.1rem;
            }
            .nav-link {
                padding: 0.4rem 0.6rem;
                font-size: 0.92rem;
            }
        }
        
        @media (max-width: 600px) {
            .logo {
                padding: 1rem;
                font-size: 1.8rem;
            }
            .nav-buttons {
                padding: 0.7rem;
                gap: 1rem;
                flex-wrap: wrap;
            }
            .nav-link {
                padding: 0.4rem 0.6rem;
                font-size: 0.92rem;
            }
        }
        
        @media (max-width: 480px) {
            .nav-buttons {
                gap: 0.6rem;
                padding: 0.6rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            .logo {
                padding: 0.8rem;
                font-size: 1.6rem;
            }
            .nav-link {
                padding: 0.3rem 0.5rem;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 400px) {
            .nav-buttons {
                gap: 0.4rem;
                padding: 0.5rem;
            }
            .logo {
                padding: 0.7rem;
                font-size: 1.4rem;
            }
            .nav-link {
                padding: 0.25rem 0.4rem;
                font-size: 0.8rem;
            }
        }
        .section {
            padding: 4rem 2rem;
            text-align: center;
            min-height: 100vh; /* Changed from height to min-height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            overflow-x: hidden; /* Prevent horizontal scrolling */
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }

        /* Scroll Animation Styles */
        .animate-element {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        /* Staggered animation delays */
        .animate-element:nth-child(1) { transition-delay: 0s; }
        .animate-element:nth-child(2) { transition-delay: 0.1s; }
        .animate-element:nth-child(3) { transition-delay: 0.2s; }
        .animate-element:nth-child(4) { transition-delay: 0.3s; }
        .animate-element:nth-child(5) { transition-delay: 0.4s; }
        .animate-element:nth-child(6) { transition-delay: 0.5s; }

        /* Special animations for different elements */
        .animate-element.slide-left {
            transform: translateX(-50px) translateY(0);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-element.slide-left.animate-in {
            transform: translateX(0) translateY(0);
        }

        .animate-element.slide-right {
            transform: translateX(50px) translateY(0);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-element.slide-right.animate-in {
            transform: translateX(0) translateY(0);
        }

        .animate-element.scale-in {
            transform: scale(0.8) translateY(20px);
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .animate-element.scale-in.animate-in {
            transform: scale(1) translateY(0);
        }

        .animate-element.fade-up {
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-element.fade-up.animate-in {
            transform: translateY(0);
        }

        /* Section-specific animations */
        #section2 .feature {
            transform: translateY(60px) scale(0.95);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        #section2 .feature.animate-in {
            transform: translateY(0) scale(1);
        }

        /* Desktop-only horizontal animations for section 3 */
        @media (min-width: 969px) {
            #section3 .about-image {
                transform: translateX(-80px);
                transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            #section3 .about-image.animate-in {
                transform: translateX(0);
            }

            #section3 .about-text {
                transform: translateX(80px);
                transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            #section3 .about-text.animate-in {
                transform: translateX(0);
            }
        }

        /* Mobile-friendly animations for section 3 */
        @media (max-width: 968px) {
            #section3 .about-image {
                transform: translateY(50px);
                transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            #section3 .about-image.animate-in {
                transform: translateY(0);
            }

            #section3 .about-text {
                transform: translateY(50px);
                transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            #section3 .about-text.animate-in {
                transform: translateY(0);
            }
        }
        #section1 {
    background-color: #0d1018;
    position: relative;
    min-height: 100vh;
    height: auto;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: calc(var(--header-height) + 2rem);
    transition: all 0.5s ease;
        }
        
        #section1::before {
    display: none;
        }
        
        #section1 > * {
            position: relative;
            z-index: 2; /* Place content above the overlay */
        }
        
        /* Hero text styling */
        .hero-text {
            margin-bottom: 2rem;
            width: 100%;
            position: relative;
            overflow: hidden; /* Hide overflow to prevent scrollbars */
        }
        
        /* D.B.O.C main heading responsive styling */
        .transformation-main {
            font-size: 6rem; /* Large size for desktop */
            font-weight: 900;
            color: #ffffff;
            text-align: center;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.1em;
        }
        
        /* Tablet styles */
        @media (max-width: 968px) {
            .transformation-main {
                font-size: 4.5rem;
            }
        }
        
        /* Mobile styles */
        @media (max-width: 768px) {
            .transformation-main {
                font-size: 3.5rem;
            }
        }
        
        /* Small mobile styles */
        @media (max-width: 480px) {
            .transformation-main {
                font-size: 2.8rem;
                letter-spacing: 0.05em;
            }
        }
        
        /* Very small screens */
        @media (max-width: 360px) {
            .transformation-main {
                font-size: 2.2rem;
            }
        }
        
        #section2 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.08) 0%, rgba(127, 159, 235, 0.03) 100%), #f8f9fa;
            color: #333333; /* Dark text for better contrast on white background */
            min-height: 100vh; /* Minimum height but allow growth */
            height: auto; /* Allow height to grow with content */
            padding: 6rem 2rem; /* Increased padding for better spacing */
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }
        
        .section2-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .section2-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #333333;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .section2-content > p {
            font-size: 1.2rem;
            color: #666666;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.8);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(127, 159, 234, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(127, 159, 234, 0.1);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            border-color: rgba(127, 159, 234, 0.4);
            box-shadow: 0 8px 30px rgba(127, 159, 234, 0.2);
        }
        
        .feature h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7f9feb;
            margin-bottom: 1rem;
        }
        
        .feature p {
            font-size: 1rem;
            color: #666666;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .section2-content h2 {
                font-size: 2.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feature {
                padding: 1.5rem;
            }
        }
        #section3 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.12) 0%, rgba(127, 159, 235, 0.07) 100%), #f8f9fa;
            color: #333333;
            min-height: 100vh;
            height: auto;
            padding: 6rem 2rem;
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }
        
        .section3-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .about-hero {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .about-image {
            flex: 0 0 300px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(70, 130, 180, 0.2);
            transition: all 0.3s ease;
        }
        
        .about-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(70, 130, 180, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #333333;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border-radius: 2px;
        }
        
        .coach-subtitle {
            font-size: 1rem;
            color: #666666;
            font-weight: 700;
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
            font-style: italic;
            letter-spacing: 0.5px;
        }
        
        .about-intro {
            font-size: 1.2rem;
            color: #7F9FEB;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .about-section {
            background: rgba(255, 255, 255, 0.8);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(70, 130, 180, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(70, 130, 180, 0.1);
        }
        
        .about-section:hover {
            transform: translateY(-5px);
            border-color: rgba(70, 130, 180, 0.4);
            box-shadow: 0 15px 50px rgba(70, 130, 180, 0.2);
        }
        
        .about-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7F9FEB;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .about-section-icon {
            width: 30px;
            height: 30px;
            background: #7F9FEB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff;
            font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Android Emoji', sans-serif;
            line-height: 1;
            text-align: center;
            flex-shrink: 0;
        }
        
        .about-section p {
            font-size: 1rem;
            color: #666666;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            justify-content: center;
            align-items: center;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(127, 159, 235, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(127, 159, 235, 0.4);
        }
        
        .social-link::before {
            content: '';
            width: 30px;
            height: 30px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .social-link.tiktok::before {
            background-image: url('tiktok-icon-2.svg');
        }
        
        .social-link.instagram::before {
            background-image: url('Instagram_logo_2016.png');
        }
        
        .social-link:hover::before {
            transform: translate(-50%, -50%) scale(1.1);
            filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
        }
        
        /* Mobile responsive for section 3 */
        @media (max-width: 968px) {
            .about-hero {
                flex-direction: column;
                gap: 2rem;
                margin-bottom: 2rem;
                text-align: center;
            }
            
            .about-image {
                flex: none;
                width: 250px;
                height: 330px;
                margin: 0 auto;
            }
            
            .about-text {
                text-align: center;
            }
            
            .about-section-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
        }
        
        @media (max-width: 768px) {
            .section3-content {
                padding: 1rem;
            }
            
            .about-text {
                text-align: center;
            }
            
            .about-text h2 {
                font-size: 2.5rem;
            }
            
            .about-section {
                padding: 2rem;
            }
            
            .about-section-icon {
                width: 26px;
                height: 26px;
                font-size: 13px;
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            
            .social-links {
                gap: 1.5rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .about-text {
                text-align: center;
            }
            
            .about-text h2 {
                font-size: 2rem;
            }
            
            .about-section-icon {
                width: 24px;
                height: 24px;
                font-size: 12px;
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
        }
        #section4 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.09) 0%, rgba(127, 159, 235, 0.04) 100%), #f8f9fa;
            color: #333333;
            min-height: 100vh;
            height: auto;
            padding: 6rem 2rem;
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }
        
        .section4-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .inquiry-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .inquiry-header h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #333333;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .inquiry-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border-radius: 2px;
        }
        
        .inquiry-intro {
            font-size: 1.2rem;
            color: #7F9FEB;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .inquiry-description {
            font-size: 1rem;
            color: #666666;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        
        .coaching-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid rgba(127, 159, 235, 0.2);
            box-shadow: 0 20px 60px rgba(127, 159, 235, 0.1);
            transition: all 0.3s ease;
        }
        
        .coaching-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(127, 159, 235, 0.15);
            border-color: rgba(127, 159, 235, 0.3);
        }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .form-group label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid rgba(127, 159, 235, 0.2);
            border-radius: 10px;
            font-size: 1rem;
            color: #333333;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #7F9FEB;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 3px rgba(127, 159, 235, 0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 1.2rem 2rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }
        
        .submit-btn:hover::before {
            left: 100%;
        }
        
        .submit-btn:hover {
            background: linear-gradient(45deg, #8fa9ff 0%, #6b8de8 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(127, 159, 235, 0.4);
        }
        
        .form-note {
            text-align: center;
            font-size: 0.9rem;
            color: #666666;
            margin-top: 1.5rem;
        }
        
        /* Mobile responsive for section 4 */
        @media (max-width: 768px) {
            .section4-content {
                padding: 1rem;
            }
            
            .inquiry-header h2 {
                font-size: 2.5rem;
            }
            
            .coaching-form {
                padding: 2rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .inquiry-header h2 {
                font-size: 2rem;
            }
            
            .coaching-form {
                padding: 1.5rem;
            }
            
            .form-group {
                margin-bottom: 1.5rem;
            }
        }
        #section5 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.11) 0%, rgba(127, 159, 235, 0.06) 100%), #f8f9fa;
            color: #333333;
            min-height: 100vh;
            height: auto;
            padding: 6rem 2rem;
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }
        
        .section5-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .packages-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .packages-header h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #333333;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .packages-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
            border-radius: 2px;
        }
        
        .packages-intro {
            font-size: 1.2rem;
            color: #7F9FEB;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .packages-description {
            font-size: 1rem;
            color: #666666;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .packages-grid {
            display: grid !important;
            grid-template-columns: 1fr 1.3fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
            margin: 4rem 0;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            justify-items: center;
            align-items: start;
            width: 100%;
            min-height: 600px;
        }
        
        .package-card {
            width: 100%;
            max-width: 300px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 2px solid rgba(127, 159, 235, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(127, 159, 235, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        /* Position cards: Chest(2,1) Arms(1,1) Shoulders(3,1) Back(2,2) */
        .packages-grid .package-card:nth-child(1) { /* Chest - Featured */
            grid-column: 2 !important;
            grid-row: 1 !important;
            max-width: 380px;
            transform: scale(1.05);
        }
        
        .packages-grid .package-card:nth-child(2) { /* Arms */
            grid-column: 1 !important;
            grid-row: 1 !important;
        }
        
        .packages-grid .package-card:nth-child(3) { /* Shoulders */
            grid-column: 3 !important;
            grid-row: 1 !important;
        }
        
        .packages-grid .package-card:nth-child(4) { /* Back */
            grid-column: 2 !important;
            grid-row: 2 !important;
        }
        
        .package-card.premium {
            border-color: #7F9FEB;
            box-shadow: 0 20px 60px rgba(127, 159, 235, 0.3);
            z-index: 20;
        }
        
        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
        }
        
        .package-card.premium::before {
            background: linear-gradient(45deg, #7F9FEB 0%, #6b8de8 100%);
            height: 6px;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            border-color: #7F9FEB;
            box-shadow: 0 20px 60px rgba(127, 159, 235, 0.2);
        }
        
        .package-card.premium:hover {
            transform: scale(1.1) translateY(-10px);
        }
        
        /* Remove all conflicting animation overrides */
        
        .package-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #7F9FEB;
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            margin-bottom: 1rem;
        }
        
        .package-badge.popular {
            background: linear-gradient(45deg, #7F9FEB 0%, #6b8de8 100%);
            animation: pulse-badge 2s ease-in-out infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .package-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1.5rem;
        }
        
        .package-price {
            margin-bottom: 2rem;
        }
        
        .price-amount {
            font-size: 3rem;
            font-weight: 900;
            color: #7F9FEB;
            display: block;
            line-height: 1;
        }
        
        .price-period {
            font-size: 1rem;
            color: #666666;
            font-weight: 500;
        }
        
        .price-original {
            font-size: 1.2rem;
            color: #999999;
            font-weight: 500;
            text-decoration: line-through;
            display: block;
            margin-top: 0.5rem;
            opacity: 0.7;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            text-align: left;
        }
        
        .package-features li {
            padding: 0.5rem 0;
            color: #333333;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .package-btn {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(90deg, #7F9FEB 0%, #6b8de8 100%);
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            text-decoration: none !important;
            box-shadow: 0 2px 12px rgba(127,159,235,0.10);
            outline: none;
        }
        
        .package-btn::before {
            display: none;
        }
        
        .package-btn:hover::before {
            left: 100%;
        }
        
        .package-btn:hover {
            background: linear-gradient(90deg, #8fa9ff 0%, #7F9FEB 100%);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 6px 24px rgba(127,159,235,0.18);
        }
        
        /* Unavailable package styles */
        .package-card.unavailable {
            opacity: 0.6;
            filter: grayscale(70%);
            pointer-events: none;
            position: relative;
        }
        
        .package-card.unavailable::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(128, 128, 128, 0.2);
            border-radius: 20px;
            pointer-events: none;
        }
        
        .package-card.unavailable .package-badge {
            background: #888888;
        }
        
        .package-card.unavailable .price-amount {
            color: #888888;
        }
        
        .package-card.unavailable .package-features li {
            color: #999999;
        }
        
        .package-card.unavailable .package-btn {
            background: #cccccc;
            color: #666666;
            cursor: not-allowed;
            opacity: 0.7;
        }
        
        .package-card.unavailable .package-btn:hover {
            background: #cccccc;
            transform: none;
            box-shadow: none;
        }
        
        .packages-footer {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(127, 159, 235, 0.2);
        }
        
        .guarantee-text {
            font-size: 0.9rem;
            color: #666666;
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .contact-text {
            font-size: 1rem;
            color: #333333;
        }
        
        .contact-link {
            color: #7F9FEB;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: #6b8de8;
            text-decoration: underline;
        }   
        
        /* Mobile responsive for section 5 */
        @media (max-width: 950px) {
            .packages-grid {
                grid-template-columns: 1fr !important;
                grid-template-rows: repeat(4, auto) !important;
                gap: 1.5rem !important;
                margin: 2rem 0 !important;
            }
            
            .packages-grid .package-card:nth-child(1),
            .packages-grid .package-card:nth-child(2),
            .packages-grid .package-card:nth-child(3),
            .packages-grid .package-card:nth-child(4) {
                grid-column: 1 !important;
                grid-row: auto !important;
                max-width: 100% !important;
                transform: none !important;
            }
            
            .package-card {
                max-width: 100% !important;
                margin: 0 auto !important;
            }
        }
        
        @media (max-width: 768px) {
            .packages-grid {
                grid-template-columns: 1fr !important;
                grid-template-rows: repeat(4, auto) !important;
                gap: 1.5rem !important;
                margin: 2rem 0 !important;
            }
            
            .packages-grid .package-card:nth-child(1),
            .packages-grid .package-card:nth-child(2),
            .packages-grid .package-card:nth-child(3),
            .packages-grid .package-card:nth-child(4) {
                grid-column: 1 !important;
                grid-row: auto !important;
                max-width: 100% !important;
                transform: none !important;
            }
            
            .package-card {
                max-width: 100% !important;
                margin: 0 auto !important;
            }
            
            .section5-content {
                padding: 1rem;
            }
            .packages-header h2 {
                font-size: 2.5rem;
            }
            .packages-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 1.5rem;
            }
            
            .packages-grid .package-card:nth-child(1),
            .packages-grid .package-card:nth-child(2),
            .packages-grid .package-card:nth-child(3),
            .packages-grid .package-card:nth-child(4) {
                grid-column: auto;
                grid-row: auto;
                max-width: none;
                transform: none;
            }
            
            .package-card {
                flex: none;
                padding: 2rem;
            }
            .price-amount {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .packages-header h2 {
                font-size: 2rem;
            }
            .packages-grid {
                display: flex;
                flex-direction: column;
            }
            .package-card {
                padding: 1.5rem;
            }
            .package-card.premium {
                order: -1; /* Move premium package to top on mobile */
            }
            .price-amount {
                font-size: 2rem;
            }
            .package-features li {
                font-size: 0.9rem;
            }
        }
            .packages-grid {
                display: flex;
                flex-direction: column;
            }
        
        #section6 {
            background: linear-gradient(135deg, rgba(127, 159, 235, 0.13) 0%, rgba(127, 159, 235, 0.08) 100%), #f8f9fa;
            color: #333333;
            min-height: 100vh;
            height: auto;
            padding: 6rem 2rem;
            transition: all 0.5s ease; /* Smooth dark mode transition */
        }
        
        .transformation-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: calc(100vh - var(--header-height) - 4rem);
            gap: 1.5rem;
            position: relative;
            padding: 2rem 0;
        }
        
        .stat-item {
            text-align: center;
            color: #fff;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #7f9feb;
            display: block;
            opacity: 0;
            animation: countUp 2s ease-out 2.5s both;
        }
        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }
        
        /* Value proposition pillars */
        .value-pillars {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            animation: slideInFromLeft 1s ease-out 0.8s both;
        }
        .pillar {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #fff;
            font-weight: 600;
            padding: 1rem 1.5rem;
            background: rgba(127,159,235,0.1);
            border: 1px solid rgba(127,159,235,0.3);
            border-radius: 25px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            text-align: left;
            justify-content: flex-start;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-sizing: border-box;
        }
        .pillar:hover {
            background: rgba(127,159,235,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(127,159,235,0.3);
        }
        .pillar-icon {
            width: 24px;
            height: 24px;
            background: #7f9feb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }
        
        .pillar span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
        }
        
        /* Testimonial quotes */
        .testimonial-container {
            position: absolute;
            top: 20%;
            width: 100%;
            height: 60%;
            pointer-events: none;
        }
        .testimonial-quote {
            position: absolute;
            background: rgba(0,0,0,0.8);
            color: #fff;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            border-left: 3px solid #7f9feb;
            font-style: italic;
            font-size: 0.9rem;
            max-width: 250px;
            opacity: 0;
            animation: floatTestimonial 12s infinite;
        }
        .testimonial-quote:nth-child(1) { left: 10%; animation-delay: 0s; }
        .testimonial-quote:nth-child(2) { right: 10%; animation-delay: 4s; }
        .testimonial-quote:nth-child(3) { left: 15%; top: 60%; animation-delay: 8s; }
        
        @keyframes floatTestimonial {
            0%, 90%, 100% { opacity: 0; transform: translateY(20px); }
            10%, 80% { opacity: 0.9; transform: translateY(0); }
        }
        
        /* Button enhancements */
        .button-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 2rem;
        }

        .transformation-btn {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            background: linear-gradient(45deg, #7f9feb 0%, #5a7fd8 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(127, 159, 235, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .transformation-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .transformation-btn:hover::before {
            left: 100%;
        }

        .transformation-btn:hover {
            background: linear-gradient(45deg, #8fa9ff 0%, #6b8de8 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(127, 159, 235, 0.4);
        }

        
        /* Animation keyframes */
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes countUp {
            0% { opacity: 0; transform: scale(0.5); }
            100% { opacity: 1; transform: scale(1); }
        }
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes slideInFromLeft {
            0% { opacity: 0; transform: translateX(-50px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInFromRight {
            0% { opacity: 0; transform: translateX(50px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        @keyframes scaleIn {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 8px 32px rgba(127,159,235,0.4); 
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 12px 40px rgba(127,159,235,0.7); 
                transform: scale(1.05);
            }
        }
        
        @keyframes pulse-glow-gold {
            0%, 100% { 
                box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3); 
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6); 
                transform: scale(1.05);
            }
        }
        
        /* Dark/Light Mode Toggle Button */
        .theme-toggle {
            position: fixed;
            bottom: 2rem; /* Bottom position */
            left: 2rem; /* Move to left side */
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #7f9feb 0%, #5a7fd8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(127,159,235,0.4);
            transition: all 0.3s ease;
            z-index: 1002;
            border: none;
            font-size: 24px;
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .theme-toggle::before {
            content: "";
            width: 30px;
            height: 30px;
            background-image: url('moon.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: brightness(0) invert(1);
        }

        .theme-toggle:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 40px rgba(127,159,235,0.6);
        }

        .theme-toggle.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            animation: pulse-glow 3s ease-in-out infinite;
        }

        /* Floating Home Button */
        .floating-home {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #7f9feb 0%, #5a7fd8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(127,159,235,0.4);
            transition: all 0.3s ease;
            z-index: 1002;
            border: none;
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .floating-home::before {
            content: "";
            width: 30px;
            height: 30px;
            background-image: url('HomePNG.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: brightness(0) invert(1);
        }

        .floating-home:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 40px rgba(127,159,235,0.6);
        }

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

        /* Dark mode styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #ffffff;
        }
        body.dark-mode .theme-toggle::before {
            background-image: url('sun.png');
            filter: brightness(0) invert(1);
        }
        body.dark-mode .theme-toggle {
            background: linear-gradient(45deg, #ffd700 0%, #ffed4a 100%);
            box-shadow: 0 8px 32px rgba(255,215,0,0.3);
        }
        body.dark-mode .theme-toggle.visible {
            animation: pulse-glow-gold 3s ease-in-out infinite;
        }
        body.dark-mode .theme-toggle:hover {
            background: linear-gradient(45deg, #ffe55c 0%, #fff176 100%);
            box-shadow: 0 12px 40px rgba(255,215,0,0.4);
        }
        
        body.dark-mode #section2 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }
        body.dark-mode .section2-content h2 {
            color: #ffffff;
        }
        body.dark-mode .section2-content > p {
            color: #cccccc;
        }
        body.dark-mode .feature {
            background: rgba(50, 50, 50, 0.8);
            border-color: rgba(127, 159, 234, 0.3);
            color: #ffffff;
        }
        body.dark-mode .feature h3 {
            color: #7f9feb;
        }
        body.dark-mode .feature p {
            color: #cccccc;
        }
        body.dark-mode #section3 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }
        
        body.dark-mode .section3-content h2 {
            color: #ffffff;
        }
        
        body.dark-mode .about-intro {
            color: #7F9FEB;
        }
        
        body.dark-mode .coach-subtitle {
            color: #cccccc;
        }
        
        body.dark-mode .about-section {
            background: rgba(50, 50, 50, 0.8);
            border-color: rgba(70, 130, 180, 0.3);
            color: #ffffff;
        }
        
        body.dark-mode .about-section h3 {
            color: #7F9FEB;
        }
        
        body.dark-mode .about-section p {
            color: #cccccc;
        }
        
        body.dark-mode .about-section-icon {
            background: #7F9FEB;
            color: #2a2a2a;
        }
        body.dark-mode #section4 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }
        
        body.dark-mode .section4-content h2 {
            color: #ffffff;
        }
        
        body.dark-mode .inquiry-intro {
            color: #7F9FEB;
        }
        
        body.dark-mode .inquiry-description {
            color: #cccccc;
        }
        
        body.dark-mode .coaching-form {
            background: rgba(50, 50, 50, 0.8);
            border-color: rgba(127, 159, 235, 0.3);
            color: #ffffff;
        }
        
        body.dark-mode .form-group label {
            color: #ffffff;
        }
        
        body.dark-mode .form-group input,
        body.dark-mode .form-group select,
        body.dark-mode .form-group textarea {
            background: rgba(60, 60, 60, 0.8);
            border-color: rgba(127, 159, 235, 0.3);
            color: #ffffff;
        }
        
        body.dark-mode .form-group input::placeholder,
        body.dark-mode .form-group textarea::placeholder {
                                                                   color: #aaaaaa;
        }
        
        body.dark-mode .form-group input:focus,
        body.dark-mode .form-group select:focus,
        body.dark-mode .form-group textarea:focus {
            background: rgba(70, 70, 70, 0.9);
            border-color: #7F9FEB;
            color: #ffffff;
        }
        
       
        
        body.dark-mode .form-note {
            color: #cccccc;
        }
        body.dark-mode #section5 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }
        
        body.dark-mode .section5-content h2 {
            color: #ffffff;
        }
        
        body.dark-mode .packages-intro {
            color: #7F9FEB;
        }
        
        body.dark-mode .packages-description {
            color: #cccccc;
        }
        
        body.dark-mode .package-card {
            background: rgba(50, 50, 50, 0.8);
            border-color: rgba(127, 159, 235, 0.3);
            color: #ffffff;
        }
        
        body.dark-mode .package-card h3 {
            color: #ffffff;
        }
        
        body.dark-mode .package-features li {
            color: #cccccc;
        }
        
        body.dark-mode .price-amount {
            color: #7F9FEB;
        }
        
        body.dark-mode .price-period {
            color: #aaaaaa;
        }
        
        body.dark-mode .price-original {
            color: #777777;
        }
        
        body.dark-mode .guarantee-text {
            color: #aaaaaa;
        }
        
        body.dark-mode .contact-text {
            color: #cccccc;
        }
        
        body.dark-mode .contact-link {
            color: #7F9FEB;
        }
        
        body.dark-mode .contact-link:hover {
            color: #8fa9ff;
        }
        
        /* Dark mode unavailable package styles */
        body.dark-mode .package-card.unavailable {
            opacity: 0.5;
            filter: grayscale(80%);
        }
        
        body.dark-mode .package-card.unavailable::after {
            background: rgba(60, 60, 60, 0.3);
        }
        
        body.dark-mode .package-card.unavailable .package-badge {
            background: #555555;
        }
        
        body.dark-mode .package-card.unavailable .price-amount {
            color: #666666;
        }
        
        body.dark-mode .package-card.unavailable .package-features li {
            color: #777777;
        }
        
        body.dark-mode .package-card.unavailable .package-btn {
            background: #444444;
            color: #888888;
        }

        /* Section 6 Dark Mode */
        body.dark-mode #section6 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }

        body.dark-mode .transformation-btn {
            background: linear-gradient(45deg, #7f9feb 0%, #5a7fd8 100%);
            color: #ffffff;
            box-shadow: 0 8px 25px rgba(127, 159, 235, 0.4);
        }

        body.dark-mode .transformation-btn:hover {
            background: linear-gradient(45deg, #8fa9ff 0%, #6b8de8 100%);
            box-shadow: 0 15px 40px rgba(127, 159, 235, 0.6);
        }

        /* Coach Transformation Section Dark Mode */
        body.dark-mode #section3-5 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }

        body.dark-mode .coach-transformation-header h2 {
            color: #ffffff;
        }

        body.dark-mode .coach-transformation-header h2::after {
            background: linear-gradient(45deg, #7F9FEB 0%, #7F9FEB 100%);
        }

        body.dark-mode .coach-transformation-intro {
            color: #7F9FEB;
        }

        body.dark-mode .coach-transformation-description {
            color: #cccccc;
        }

        body.dark-mode .coach-transformation-card {
            background: rgba(45, 45, 45, 0.9);
            border: 1px solid rgba(127, 159, 235, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .coach-transformation-details h3 {
            color: #ffffff;
        }

        body.dark-mode .coach-stat-value {
            color: #7F9FEB;
        }

        body.dark-mode .coach-stat-label {
            color: #cccccc;
        }

        body.dark-mode .coach-transformation-stats {
            background: rgba(50, 50, 50, 0.5);
            border: 1px solid rgba(127, 159, 235, 0.2);
        }

        body.dark-mode .coach-transformation-testimonial {
            background: rgba(50, 50, 50, 0.5);
            color: #cccccc;
            border-left: 4px solid #7F9FEB;
        }

        body.dark-mode .coach-journey-highlights h4 {
            color: #ffffff;
        }

        body.dark-mode .coach-journey-highlights ul li {
            color: #cccccc;
        }

        body.dark-mode .coach-journey-highlights ul li::before {
            color: #7F9FEB;
        }

        /* Section 7 Dark Mode */
        body.dark-mode #section7 {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%), #2a2a2a;
            color: #ffffff;
        }

        body.dark-mode .section-header h2 {
            color: #ffffff;
        }

        body.dark-mode .section-header h2::after {
            background: #7F9FEB;
        }

        body.dark-mode .section-subtitle {
            color: #cccccc;
        }

        body.dark-mode .transformation-item {
            background: rgba(50, 50, 50, 0.8);
            border-color: rgba(127, 159, 235, 0.3);
            color: #ffffff;
        }

        body.dark-mode .transformation-info h3 {
            color: #ffffff;
        }

        body.dark-mode .results-grid {
            background: rgba(127, 159, 235, 0.1);
        }

        body.dark-mode .result-stat .number {
            color: #7F9FEB;
        }

        body.dark-mode .result-stat .label {
            color: #cccccc;
        }

        body.dark-mode .client-quote {
            background: rgba(127, 159, 235, 0.1);
            color: #cccccc;
            border-left-color: #7F9FEB;
        }

        body.dark-mode .success-overview {
            background: transparent;
        }

        body.dark-mode .success-overview h3 {
            color: #ffffff;
        }

        body.dark-mode .stat-number {
            color: #7F9FEB;
        }

        body.dark-mode .stat-text {
            color: #cccccc;
        }

        body.dark-mode .transformation-cta {
            background: linear-gradient(135deg, #7F9FEB 0%, #6B8CE8 100%);
        }

        body.dark-mode .cta-button {
            background: rgba(255, 255, 255, 0.95);
            color: #7F9FEB;
        }

        body.dark-mode .cta-button:hover {
            background: #ffffff;
            color: #7F9FEB;
        }
        

        body.dark-mode .transformation-details h3 {
            color: #ffffff;
        }

        body.dark-mode .stat-value {
            color: #7F9FEB;
        }

        body.dark-mode .stat-label {
            color: #aaaaaa;
        }

        body.dark-mode .transformation-stats {
            background: rgba(127, 159, 235, 0.1);
            border-color: rgba(127, 159, 235, 0.3);
        }

        body.dark-mode .transformation-testimonial {
            background: rgba(60, 60, 60, 0.8);
            color: #cccccc;
            border-color: #7F9FEB;
        }

        body.dark-mode .success-metrics {
            background: rgba(127, 159, 235, 0.1);
            border-color: rgba(127, 159, 235, 0.3);
        }

        body.dark-mode .metric-number {
            color: #7F9FEB;
        }

        body.dark-mode .metric-label {
            color: #aaaaaa;
        }

        body.dark-mode .cta-section h3 {
            color: #ffffff;
        }

        body.dark-mode .cta-section p {
            color: #cccccc;
        }

        body.dark-mode footer {
            background-color: #1a1a1a;
        }

        body.dark-mode footer h3 {
            color: #9bb5ff;
        }

        body.dark-mode footer p {
            color: #cccccc;
        }

        /* Hide testimonials on mobile devices */
        @media (max-width: 1450px) {
            .testimonial-container {
                display: none !important;
            }
            
            /* Mobile Image Optimization */
            .image-container, .coach-image-container {
                aspect-ratio: 4/5 !important;
                max-height: 250px;
            }
            
            .image-container img, .coach-image-container img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
            
            /* Section 3-5 Mobile Responsive Styles */
            #section3-5 {
                padding: 3rem 1rem;
            }
            
            .coach-transformation-content {
                padding: 0.5rem;
            }
            
            .coach-transformation-header {
                margin-bottom: 2rem;
            }
            
            .coach-transformation-header h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .coach-transformation-intro {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .coach-transformation-description {
                font-size: 0.9rem;
                line-height: 1.4;
            }
            
            .coach-transformation-card {
                display: block !important;
                grid-template-columns: none !important;
                gap: 1.5rem !important;
                padding: 1.5rem 1rem;
            }
            
            .coach-before-after {
                grid-template-columns: 1fr !important;
                gap: 1rem;
                margin: 0 auto 1.5rem auto;
                max-width: 250px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .coach-transformation-details {
                padding: 0;
            }
            
            .coach-transformation-details h3 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
            
            .coach-transformation-stats {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
                padding: 1rem;
                margin-bottom: 1rem;
            }
            
            .coach-stat-value {
                font-size: 1.1rem;
            }
            
            .coach-stat-label {
                font-size: 0.7rem;
            }
            
            .coach-transformation-testimonial {
                font-size: 0.85rem;
                padding: 0.8rem;
                margin: 1rem 0;
            }
            
            /* Section 7 Mobile Responsive Styles */
            #section7 {
                padding: 3rem 0.8rem;
                min-height: 115vh;
            }
            
            .transformations-content {
                padding: 0;
                max-width: 100%;
            }
            
            .transformations-header {
                margin-bottom: 2.5rem;
                padding: 0 0.8rem;
            }
            
            .transformations-header h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .transformations-intro {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            /* Section 7 - Client Transformations Mobile */
            #section7 {
                padding: 3rem 1rem;
                min-height: auto;
            }

            .client-transformations {
                max-width: 100%;
            }

            .section-header h2 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .transformations-showcase {
                margin-bottom: 2.5rem;
            }

            .transformation-item {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .before-after-container {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                max-width: 100%;
            }

            .image-box {
                aspect-ratio: 3/4;
            }

            .image-tag {
                padding: 0.5rem;
                font-size: 0.7rem;
            }

            .transformation-info h3 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .results-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.8rem;
                padding: 1rem;
            }

            .result-stat .number {
                font-size: 1.2rem;
            }

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

            .client-quote {
                font-size: 0.9rem;
                padding: 1rem 1rem 1rem 2rem;
            }

            .success-overview {
                padding: 1.5rem;
                margin-bottom: 2rem;
                background: transparent;
            }

            .success-overview h3 {
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-text {
                font-size: 0.8rem;
            }

            .transformation-cta {
                padding: 2rem 1.5rem;
            }

            .transformation-cta h3 {
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }

            .transformation-cta p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 768px) {
            .transformation-stats {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 0.5rem;
                padding: 0.8rem;
                margin-bottom: 0.8rem;
                border-radius: 10px;
            }
            
            .stat-value {
                font-size: 1rem;
                line-height: 1.1;
            }
            
            .stat-label {
                font-size: 0.6rem;
                margin-top: 0.2rem;
            }
            
            .transformation-testimonial {
                font-size: 0.8rem;
                padding: 0.8rem;
                line-height: 1.3;
                border-radius: 10px;
            }
        }
        
        @media (max-width: 480px) {
            /* Extra small mobile optimization */
            .image-container, .coach-image-container {
                aspect-ratio: 4/5 !important;
                max-height: 200px;
            }
            
            #section3-5 {
                padding: 2rem 0.8rem;
            }
            
            .coach-transformation-header h2 {
                font-size: 1.5rem;
            }
            
            .coach-transformation-card {
                padding: 1rem 0.8rem;
                gap: 1rem !important;
            }
            
            .coach-before-after {
                grid-template-columns: 1fr !important;
                gap: 0.8rem;
                max-width: 200px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .coach-transformation-stats {
                grid-template-columns: 1fr;
                gap: 0.6rem;
                padding: 0.8rem;
            }
            
            .coach-transformation-details h3 {
                font-size: 1.1rem;
            }
            
            /* Section 7 Small Mobile Styles */
            #section7 {
                padding: 2rem 0.8rem;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .transformation-item {
                padding: 1rem;
                margin-bottom: 1.5rem;
            }

            .before-after-container {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
                max-width: 100%;
            }

            .image-box {
                aspect-ratio: 4/5;
            }

            .transformation-info h3 {
                font-size: 1.1rem;
            }

            .results-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                padding: 0.8rem;
            }

            .result-stat .number {
                font-size: 1.1rem;
            }

            .client-quote {
                font-size: 0.8rem;
                padding: 0.8rem 0.8rem 0.8rem 1.2rem;
            }

            .success-overview {
                padding: 1rem;
                background: transparent;
            }

            .success-overview h3 {
                font-size: 1.2rem;
            }

            .stats-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .transformation-cta {
                padding: 1.5rem 1rem;
            }

            .transformation-cta h3 {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.8rem;
            }
        }

        /* Form Validation Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInError 0.3s ease-in-out;
}

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

/* Footer form error styles */
.contact-form-footer .form-group input.error,
.contact-form-footer .form-group select.error,
.contact-form-footer .form-group textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.contact-form-footer .form-group input.error:focus,
.contact-form-footer .form-group select.error:focus,
.contact-form-footer .form-group textarea.error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

/* Dark mode error styles */
body.dark-mode .form-group input.error,
body.dark-mode .form-group select.error,
body.dark-mode .form-group textarea.error,
body.dark-mode .contact-form-footer .form-group input.error,
body.dark-mode .contact-form-footer .form-group select.error,
body.dark-mode .contact-form-footer .form-group textarea.error {
    border-color: #ff6b6b !important;
    background-color: rgba(255, 107, 107, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15) !important;
}

body.dark-mode .form-group input.error:focus,
body.dark-mode .form-group select.error:focus,
body.dark-mode .form-group textarea.error:focus,
body.dark-mode .contact-form-footer .form-group input.error:focus,
body.dark-mode .contact-form-footer .form-group select.error:focus,
body.dark-mode .contact-form-footer .form-group textarea.error:focus {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.25) !important;
}

body.dark-mode .error-message {
    color: #ff6b6b;
}

/* Form validation states - success (optional) */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.contact-form-footer .form-group input.success,
.contact-form-footer .form-group select.success,
.contact-form-footer .form-group textarea.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

body.dark-mode .form-group input.success,
body.dark-mode .form-group select.success,
body.dark-mode .form-group textarea.success,
body.dark-mode .contact-form-footer .form-group input.success,
body.dark-mode .contact-form-footer .form-group select.success,
body.dark-mode .contact-form-footer .form-group textarea.success {
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

/* Improve form accessibility */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    box-shadow: none; /* Remove default browser validation styling */
}

/* Make sure error messages don't affect layout */
.form-group {
    position: relative;
    min-height: auto;
}
