:root {
    --primary: #ff8c82;
    --primary-glow: rgba(255, 140, 130, 0.4);
    --bg-light: #fff5f2;
    --text-main: #2b2b2b;
    --text-muted: #5e5e5e;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(255, 120, 120, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

/* Background Shapes for Glassmorphism */
.bg-shape {
    display: none;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 172, 172, 0.5);
    top: -100px;
    left: -150px;
}

.bg-shape-2 {
    width: 800px;
    height: 800px;
    background: rgba(255, 222, 169, 0.5);
    top: 20%;
    right: -200px;
}

.bg-shape-3 {
    width: 500px;
    height: 500px;
    background: rgba(255, 150, 200, 0.3);
    bottom: -10%;
    left: 20%;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255,255,255,0.8);
    padding: 15px 8%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 300;
    color: var(--primary);
}

/* Gold Shimmer Logo */
.gold-shimmer {
    background: linear-gradient(
        90deg,
        #8B6914 0%,
        #C5943A 20%,
        #FFD700 40%,
        #FFF8DC 50%,
        #FFD700 60%,
        #C5943A 80%,
        #8B6914 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s linear infinite;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    border: none;
}

.btn-primary {
    background-color: var(--text-main);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary);
}

.btn-glow {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    color: #333;
    box-shadow: 0 10px 20px rgba(255, 154, 158, 0.4);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 154, 158, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}
.btn-outline-dark {
    background: rgba(255,255,255,0.5);
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.1);
}
.btn-outline-dark:hover {
    background: white;
}

/* Lang Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}
.lang-switcher span {
    cursor: pointer;
    transition: 0.3s;
    padding: 2px 5px;
}
.lang-switcher span:hover {
    color: var(--primary);
}
.lang-switcher span.active {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 120px 8% 40px;
    align-items: center;
    gap: 50px;
    position: relative;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-model-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 15px;
    width: 90%;
    height: 80vh;
    position: relative;
    overflow: visible; /* To allow floating labels out of bounds */
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.floating-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
}

.floating-label .icon {
    font-size: 1.2rem;
}

.label-1 { top: 20%; left: -15%; animation-delay: 0s; }
.label-2 { top: 40%; right: -10%; animation-delay: 1s; }
.label-3 { bottom: 30%; left: -5%; animation-delay: 2s; }
.label-4 { bottom: 10%; right: 10%; animation-delay: 3s; }

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

/* Common Section Styles */
section {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    transition: transform 0.3s;
}

.glass-box:hover {
    transform: translateY(-10px);
}

.glass-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: center;
}

.glass-pricing-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.glass-pricing-card:hover {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.glass-pricing-card.popular {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    border: 2px solid rgba(255, 140, 130, 0.3);
}

.glass-pricing-card.popular:hover {
    transform: scale(1.08);    
}

.glass-pricing-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.glass-pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 25px;
}

.glass-pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.glass-pricing-card ul {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.glass-pricing-card ul li {
    margin-bottom: 15px;
    color: #444;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Footer */
.glass-footer {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 8% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.socials a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 150px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .benefits-grid, .pricing-cards {
        grid-template-columns: 1fr;
    }
    .glass-pricing-card.popular {
        transform: scale(1);
    }
    .nav-links, .navbar .btn-primary {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .floating-label {
        position: static;
        margin: 10px auto;
        width: fit-content;
        animation: none;
    }
    .main-model-card {
        height: auto;
    }
}

.welcome-nod {
    animation: nodEffect 3s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    transform-origin: center center;
    border-radius: 0;
}

@keyframes nodEffect {
    0% {
        transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) scale(1) translateY(15px);
        filter: saturate(0.8) brightness(0.8);
    }
    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.1) translateY(0);
        filter: saturate(1) brightness(1);
    }
}

/* Aura Glow behind video */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 550px;
    background: radial-gradient(ellipse, rgba(255, 154, 158, 0.5) 0%, rgba(254, 207, 239, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: auraGlow 4s ease-in-out infinite alternate;
}

@keyframes auraGlow {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Sparkle particles */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.9), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnim 3s ease-in-out infinite;
    z-index: 5;
}

.sparkle:nth-child(2) { width: 4px; height: 4px; animation-delay: 0.5s; animation-duration: 2.5s; }
.sparkle:nth-child(3) { width: 8px; height: 8px; animation-delay: 1s; animation-duration: 4s; }
.sparkle:nth-child(4) { width: 3px; height: 3px; animation-delay: 1.5s; animation-duration: 3.5s; }
.sparkle:nth-child(5) { width: 5px; height: 5px; animation-delay: 2s; animation-duration: 2.8s; }
.sparkle:nth-child(6) { width: 4px; height: 4px; animation-delay: 0.8s; animation-duration: 3.2s; }

@keyframes sparkleAnim {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-20px) scale(1); }
    100% { opacity: 0; transform: translateY(-40px) scale(0); }
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 1.4rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* Floating Button */
.float-btn {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 140, 130, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}
.float-btn:hover {
    transform: scale(1.1);
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 140, 130, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 140, 130, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 140, 130, 0); }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.testimonials p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* Accordion */
.accordion-item.active .accordion-content {
    max-height: 500px !important;
}
.accordion-item.active .icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* ====================== */
/* MOBILE RESPONSIVE CSS  */
/* ====================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 5% 40px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-visual .glass-card {
        width: 300px !important;
    }

    .floating-label {
        display: none;
    }

    .sparkle {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 245, 238, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.4rem;
    }

    .hamburger {
        display: flex !important;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 90px 5% 30px;
        gap: 25px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-visual {
        justify-content: center;
        order: -1;
    }

    .hero-visual .glass-card {
        width: 280px !important;
    }

    .aura-glow, .hero-visual::before {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        padding: 0 3% !important;
        gap: 20px !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 3%;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .socials {
        justify-content: center;
    }

    .logo span {
        font-size: 2rem !important;
    }

    .lang-switcher {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-visual .glass-card {
        width: 250px !important;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .glass-box {
        padding: 15px !important;
    }

    .glass-box img {
        height: 180px !important;
    }

    .navbar {
        padding: 10px 4%;
    }

    .logo span {
        font-size: 1.6rem !important;
    }
}
