/* Modern Homepage Styles for Priyanshu Visuals */
body.home-modern {
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #fff;
    font-family: 'Outfit', -apple-system, sans-serif;
    overflow-x: hidden;
    height: auto; /* allow scrolling */
}

/* Scroll Container for 800vh effect */
.scroll-container {
    height: 800vh;
    position: relative;
}

/* Hero Section / Sticky Wrapper */
.hero-section {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.sticky-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

canvas#hero-canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Container for Text Sections */
.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.text-section {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 1200px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    pointer-events: none;
}

.text-section.active {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.text-section.center {
    text-align: center;
}

.text-section.left {
    text-align: left;
    left: 10%;
    transform: translate(0, -40%);
}
.text-section.left.active {
    transform: translate(0, -50%);
}

.text-section.right {
    text-align: right;
    left: auto;
    right: 10%;
    transform: translate(0, -40%);
}
.text-section.right.active {
    transform: translate(0, -50%);
}

/* Typography Overrides for Hero */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #FFB800;
}

.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, #FFB800, #FF6B00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-desc-main {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
}

.feature-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    line-height: 1.6;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #fff;
    color: #000;
}
.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Floating WhatsApp Chat Icon Only */
.floating-whatsapp-chat {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp-chat svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp-chat:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .text-section.left, .text-section.right {
        text-align: center;
        left: 5% !important;
        right: 5% !important;
        width: 90%;
    }
    .hero-title-main { font-size: 3rem; }
    .floating-whatsapp-chat .chat-text { display: none; }
    .floating-whatsapp-chat { padding: 15px; }
}
