body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b0b0f;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
    z-index: 1000;
}

/* LEFT: LOGO + NAME */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
}

.logo-box img {
    height: 40px;
}

.brand-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

/* RIGHT NAV */
.nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
    padding-right: 30px;
}

.nav-right a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.nav-right a:hover {
    color: #b84cff;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    padding: 7px 16px;
    border-radius: 20px;
    background: linear-gradient(45deg, #b84cff, #ff4fd8);
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-right {
        position: absolute;
        top: 65px;
        right: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    .nav-right.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        padding-right: 10px;
    }
}

:root {
    --primary-grad: linear-gradient(45deg, #b84cff, #ff4fd8);
    --dark-bg: #0a0a0a;
}

.hero {
    height: 100vh;
    /* Increased to full height for better impact */
    background: url('https://images.unsplash.com/photo-1599058917765-a780eda07a3e') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* IMPROVED OVERLAY: Darker at the bottom for text legibility */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    /* Subtle entrance animation */
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    /* Responsive font size */
    color: white;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 span {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* BUTTONS: Glassmorphism & Hover States */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    padding: 16px 35px;
    border-radius: 50px;
    background: var(--primary-grad);
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(184, 76, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 76, 255, 0.5);
}

.btn-secondary {
    padding: 16px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    /* Glass effect */
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
    border-color: white;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* FEATURE STRIP */
.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 25px 20px;
    background: #0f0f14;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* EACH BOX */
.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

/* ICON */
.feature-box span {
    color: #b84cff;
    font-size: 18px;
}

/* HOVER EFFECT */
.feature-box:hover {
    color: white;
    transform: translateY(-3px);
}

.feature-box:hover span {
    color: #ff4fd8;
}

/* MOBILE */
@media (max-width: 768px) {
    .features {
        justify-content: center;
    }

    .feature-box {
        width: 45%;
        justify-content: center;
    }
}

/* SECTION */
.products {
    padding: 100px 20px;
    background: #050505;
    text-align: center;
}

.section-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    color: #b84cff;
}

/* GRID */
.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* CARD STYLING */
.product-card {
    background: linear-gradient(145deg, #111, #080808);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* IMAGE PEDESTAL GLOW */
.img-container {
    position: relative;
    margin-bottom: 25px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(184, 76, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    transition: 0.5s ease;
}

/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b84cff;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 3;
}

.product-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.product-card p {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

/* IMPROVED BUTTON */
.order-btn {
    width: 90%;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
}

.order-btn:hover {
    background: linear-gradient(45deg, #b84cff, #ff4fd8);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(184, 76, 255, 0.3);
}

/* HOVER ANIMATION */
.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 76, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* SECTION */
.why-vatya {
    padding: 100px 20px;
    background: #08080a;
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.why-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE SECTION WITH ANIMATION */
.why-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-image-wrapper img {
    width: 100%;
    max-width: 400px;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 76, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* CONTENT SECTION */
.why-content {
    flex: 1;
}

.why-title {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 10px;
}

.why-title span {
    background: linear-gradient(45deg, #b84cff, #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-subtitle {
    color: #888;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

/* WHY GRID POINTS */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.why-icon {
    width: 32px;
    height: 32px;
    background: rgba(184, 76, 255, 0.1);
    border: 1px solid rgba(184, 76, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b84cff;
    flex-shrink: 0;
    font-size: 12px;
}

.why-text h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.why-text p {
    color: #777;
    font-size: 13px;
    line-height: 1.4;
}

/* BUTTON */
.why-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(45deg, #b84cff, #ff4fd8);
    color: white;
    text-underline-offset: none;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(184, 76, 255, 0.2);
}

.why-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 76, 255, 0.4);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .why-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px auto;
        text-align: left;
    }
}

/* SECTION */
.reviews {
    padding: 100px 20px;
    background: #050505;
    text-align: center;
}

.reviews-header {
    margin-bottom: 60px;
}

.review-title {
    color: white;
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.review-title span {
    color: #b84cff;
}

.reviews-header p {
    color: #777;
    font-size: 1.1rem;
}

/* CONTAINER */
.review-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD STYLING */
.review-card {
    background: #121214;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    text-align: left;
}

/* IMAGE SECTION */
.transformation-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.transformation-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Ensures transform photos fill the space nicely */
    transition: 0.5s ease;
}

.transformation-img .tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(184, 76, 255, 0.9);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* INFO SECTION */
.review-info {
    padding: 25px;
}

.stars {
    font-size: 12px;
    margin-bottom: 15px;
}

.review-info p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 72px;
    /* Keeps cards aligned */
}

/* USER DETAILS */
.user-meta h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 2px;
}

.verified {
    color: #b84cff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* HOVER EFFECTS */
.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 76, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.review-card:hover img {
    transform: scale(1.1);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 480px) {
    .review-container {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.final-cta {
    padding: 120px 20px;
    background: #050505;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND GLOW */
.final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 76, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-badge {
    display: inline-block;
    background: rgba(184, 76, 255, 0.1);
    color: #b84cff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-card h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-card p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    background: linear-gradient(45deg, #b84cff, #ff4fd8);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(184, 76, 255, 0.4);
}

.cta-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 76, 255, 0.6);
}

.trust-note {
    color: #666;
    font-size: 13px;
}

/* FOOTER STYLING */
.footer {
    background: #08080a;
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #b84cff;
}

.footer-brand p {
    color: #777;
    line-height: 1.6;
    max-width: 300px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #b84cff;
}

.footer-contact p {
    color: #777;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #444;
    font-size: 13px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 30px;
    }

    .cta-card {
        padding: 40px 20px;
    }
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #b84cff, #ff4fd8);
    color: white;
    font-size: 20px;
    padding: 12px 15px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-box {
        max-width: 100%;
    }
}