body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 30% 30%, #111 70%, #2a0a0a 100%);
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4vw;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #b71c1c;
    z-index: 1002;
}

.logo img {
    height: 32px;
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

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

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

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-login {
    display: none;
}

.nav-menu.active {
    transform: translateX(0) !important;
}
nav ul li a:hover {
    color: #b71c1c;
}
.btn {
    background: #b71c1c;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.7em 2em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(183,28,28,0.15);
}
.btn:hover {
    background: #fff;
    color: #b71c1c;
}
.login-btn {
    background: #b71c1c;
    color: #fff;
    margin-left: 2rem;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding: 70px 0 0;
    max-width: 100%;
    margin: 0 auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #b71c1c;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: #b71c1c;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 1.5rem 0;
    color: #ccc;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-rating img {
    height: 32px;
    border-radius: 50%;
}
.hero-image {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.social-links {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.social-links a img {
    width: 32px;
    height: 32px;
    filter: brightness(1.2);
}
.habits {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 4vw;
    gap: 2vw;
}
.habits-content {
    max-width: 400px;
}
.habits-content h2 {
    font-size: 2rem;
    font-weight: 800;
}
.habits-content p {
    color: #ccc;
    margin: 1rem 0 2rem 0;
}
.habits-images {
    display: flex;
    gap: 2vw;
}
.habits-img-card {
    background: #232a23;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    padding: 1rem;
}
.habits-img-card img {
    width: 100%;
    border-radius: 16px;
}
.habits-img-card span {
    margin-top: 1rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.habits-side-card {
    background: #b71c1c;
    color: #fff;
    border-radius: 20px;
    padding: 2rem 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 120px;
    box-shadow: 0 2px 16px rgba(183,28,28,0.15);
}
.why-choose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 4vw;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-content {
    flex: 1;
    max-width: 500px;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b71c1c;
    margin-bottom: 2rem;
    text-align: center;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.why-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(183, 28, 28, 0.3);
}

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

.why-feature h3 {
    color: #b71c1c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-feature p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.why-image {
    flex: 1;
    max-width: 500px;
}


.play-btn {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: url('icons/play.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.member-name {
    font-weight: bold;
    color: #b71c1c;
}
.member-role {
    font-size: 0.9rem;
    color: #aaa;
}
.stars {
    color: #b71c1c;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}



.nav-btn {
    background: rgba(183, 28, 28, 0.2);
    border: 2px solid #b71c1c;
    color: #b71c1c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #b71c1c;
    color: white;
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}
.pricing {
    background: #232a23;
    padding: 4vw 0;
    text-align: center;
}
.pricing h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2vw;
}
.pricing-card {
    background: #181a18;
    border-radius: 20px;
    padding: 2rem 1rem;
    width: 260px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-card h3 {
    color: #b71c1c;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.price {
    font-size: 2rem;
    font-weight: bold;
    color: #b71c1c;
    margin-bottom: 1rem;
}
.price span {
    font-size: 1rem;
    color: #fff;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    color: #ccc;
    font-size: 1rem;
}
.pricing-card ul li {
    margin-bottom: 0.7rem;
}
.pro {
    background: #b71c1c;
    color: #fff;
}
.pro h3, .pro .price, .pro ul, .pro .btn {
    color: #fff !important;
}
.elite {
    border: 2px solid #b71c1c;
}
footer {
    background: #181a18;
    padding: 2vw 0 0 0;
    color: #fff;
    text-align: center;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    margin-bottom: 2vw;
}
.footer-logo img {
    height: 40px;
}
.footer-nav {
    display: flex;
    gap: 2rem;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #b71c1c;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a img {
    width: 32px;
    height: 32px;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding: 1vw 0;
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 4vw;
    padding-right: 4vw;
}
.footer-bottom a {
    color: #b71c1c;
    text-decoration: none;
}
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }
    .desktop-login {
        display: none;
    }
    .mobile-login {
        display: inline-block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 1001;
        visibility: hidden;
        opacity: 0;
    }
    .nav-menu.active {
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
    }
    .nav-menu ul li a {
        display: block;
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    .hero {
        min-height: 100vh;
        padding: 4rem 2rem;
    }
    .hero-content {
        margin: 0;
        padding: 1rem;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    .hero-image {
        width: 90vw;
        max-width: 320px;
        margin-top: 2rem;
    }
    .habits-images, .pricing-cards {
        flex-direction: column;
        gap: 2rem;
    }
    .habits-img-card, .pricing-card {
        width: 90vw;
        max-width: 320px;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0.5rem auto;
    }
    .login-btn {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        padding: 1em 0;
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .container, .max-w-3xl, .max-w-md {
        width: 100vw;
        max-width: 100vw;
        padding: 0 2vw;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .logo img {
        height: 24px;
    }
    nav ul {
        margin-top: 1rem;
    }
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    .hero {
        padding: 2rem 1rem;
    }
    .hero-content {
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin: 1rem 0;
    }
    .habits-content h2, .why-content h2,  .pricing h2 {
        font-size: 1.8rem;
    }
    .section-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .habits-img-card, .pricing-card {
        width: calc(100% - 2rem);
        margin: 0 1rem;
        padding: 1.5rem;
    }
    .habits-img-card img {
        width: 100%;
        height: auto;
    }
    .why-list li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    .menu-toggle {
        display: flex;
    }
    .desktop-login {
        display: none;
    }
    .mobile-login {
        display: inline-block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
    }
    .nav-menu.active {
        transform: translateY(0);
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }
    .nav-menu ul li a {
        display: block;
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    .hero {
        padding-top: 60px;
    }
    .hero-image {
        order: -1;
        width: 100%;
        height: 40vh;
        margin-bottom: 2rem;
    }
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }
}

@media (max-width: 390px) {
    .navbar {
        padding: 0.5rem 0.5rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .logo img {
        height: 20px;
    }
    .hero-image {
        height: 35vh;
    }
    .hero-content {
        padding: 1rem 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 0.95rem;
        margin: 1rem 0;
        padding: 0;
    }
    .btn {
        padding: 0.6em 1.5em;
        font-size: 0.95rem;
        width: 100%;
        margin: 0.5rem 0;
    }
    .hero-rating {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    .hero-rating img {
        height: 24px;
    }
    .section-desc {
        padding: 0;
    }
    .habits-img-card, .pricing-card{
        width: 100%;
        margin: 0;
        padding: 1rem;
        max-width: 100%;
    }
    .why-list {
        padding-left: 1rem;
    }
    .why-list li {
        font-size: 0.95rem;
    }
    .pricing-card .price {
        font-size: 2rem;
    }
    .pricing-card ul {
        padding-left: 1rem;
    }
    .footer-section {
        padding: 0.5rem;
    }
    .footer-bottom {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Fix mobile layout issues */
    .pricing, .transformations, .contact {
        padding: 2rem 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-cards, .transformations-grid {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .pricing-card,  .transformation-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1rem;
    }
}







.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #b71c1c;
    background: transparent;
    color: #b71c1c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #b71c1c;
    color: white;
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 4rem 4vw;
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b71c1c;
    border-radius: 50%;
    color: white;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.8rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b71c1c;
    background: rgba(255, 255, 255, 0.15);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #b71c1c;
    background: #111;
    padding: 0 0.5rem;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #333;
    color: #fff;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #111;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.close-modal:hover {
    color: #b71c1c;
}

.video-placeholder {
    text-align: center;
    padding: 2rem;
}

.video-placeholder h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #ccc;
    margin-bottom: 2rem;
}

.video-icon {
    font-size: 4rem;
    color: #b71c1c;
    animation: pulse 2s infinite;
}

/* Notifications */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #4caf50;
}

.notification.error {
    background: #f44336;
}

.notification.info {
    background: #2196f3;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #b71c1c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #d32f2f;
    transform: translateY(-5px);
}

/* Enhanced Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-in {
    animation: slideUp 0.6s ease forwards;
}

/* Image Loading Animation */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Enhanced Mobile Menu */
.nav-menu {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        visibility: hidden;
        opacity: 0;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
    }

    .mobile-login {
        display: block !important;
    }

    .desktop-login {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Contact Section Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    

    /* Pricing Cards Mobile */
    .pricing-cards {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-card {
        max-width: none;
    }
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

/* Enhanced Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

/* Enhanced Hero Section */
.hero-content h1 {
    animation: fadeInUp 1s ease;
}

.hero-content p {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-actions {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-rating {
    animation: fadeInUp 1s ease 0.6s both;
}

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

/* Enhanced Footer */
.footer-content {
    animation: fadeInUp 1s ease 0.8s both;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-btn:focus,
.scroll-top-btn:focus {
    outline: 2px solid #b71c1c;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-top-btn,
    .contact-form {
        display: none;
    }
}

.section-desc {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Transformations Section */
.transformations {
    padding: 4rem 4vw;
    text-align: center;
}

.transformations h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(183, 28, 28, 0.3);
}

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

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

.before, .after {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.before img, .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before:hover img, .after:hover img {
    transform: scale(1.05);
}

.label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.transformation-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.transformation-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.transformation-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: rgba(183, 28, 28, 0.2);
    color: #b71c1c;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(183, 28, 28, 0.3);
}

@media (max-width: 768px) {
    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transformation-card {
        padding: 1.5rem;
    }
    
    .transformations h2 {
        font-size: 2rem;
    }
    
    .before-after {
        gap: 0.5rem;
    }
    
    .transformation-stats {
        gap: 0.5rem;
    }
    
    .stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Image Carousel for Why Choose Section */
.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-image.active {
    opacity: 1;
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-btn:hover {
    background: rgba(183, 28, 28, 0.8);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b71c1c;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(183, 28, 28, 0.7);
}
/* Fixed Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #080000;
}

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    margin-top: -3rem;
    color: #fff;
    font-weight: 800;
}

/* Carousel container */
.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    min-height: 400px;
    
}
.testimonial-cards {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto; /* auto adjust with content */
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
    height: auto;
}

.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    min-height: 200px;
    height: auto;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Cards container */
.testimonial-track {
    display: flex;
    width: 300%; /* 3 cards × 100% */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

/* Individual testimonial card */
.testimonial-card {
    width: 33.333%; 
    height: 100%;
    flex-shrink: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
 .testimonial-cards {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: auto; /* <-- FIXED: let container adjust automatically */
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    transform: translateX(100%);
    height: auto;         /* <-- allow card to grow with content */
    min-height: 200px;    /* optional: keep some base size */
    padding: 20px;        /* ensure spacing */
    box-sizing: border-box;
}

.testimonial-card:first-child {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.testimonial-card img {
    /* width: 90px;
    height: 90px; */
    height: auto;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #b71c1c;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.3);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin: 1.5rem 0rem 0.5rem 0rem;
    font-style: italic;
    max-width: 400px;
}

.member-name {
    color: #b71c1c;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.1rem 0 0 0 ;
}

.member-role {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.stars {
    color: #b71c1c;
    font-size: 1.3rem;
    margin-top: 0rem 0rem 0.2rem 0rem ;
    letter-spacing: 2px;
}

/* Navigation indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(183, 28, 28, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 28, 28, 0.5);
}

.indicator.active {
    background: #b71c1c;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(183, 28, 28, 0.5);
}

/* Navigation arrows */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nav-btn {
    background: rgba(183, 28, 28, 0.2);
    border: 2px solid #b71c1c;
    color: #b71c1c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: #b71c1c;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonial-carousel {
        height: 350px;
        max-width: 90%;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card img {
        width: 70px;
        height: 70px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        height: 320px;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
  
    .why-choose {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-feature {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .why-feature h3 {
        font-size: 1.1rem;
    }
    
    .why-image {
        max-width: 100%;
    }
    
    .image-carousel {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
