:root {
    --primary: #f59e0b; /* Vibrant Mango Amber */
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --secondary: #064e3b; /* Deep Royal Green */
    --secondary-light: #065f46;
    --accent: #dc2626; /* Ripe Sensation Red */
    --bg-linen: #fffcf7;
    --bg-vibrant: linear-gradient(135deg, #064e3b 0%, #043125 100%);
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --border-soft: rgba(0,0,0,0.06);
    --shadow-editorial: 0 30px 60px -15px rgba(6, 78, 59, 0.12);
    --shadow-vibrant: 0 20px 40px -10px rgba(245, 158, 11, 0.3);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', 'Hind Siliguri', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg-linen);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

/* Luxury Navigation */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.4s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img { height: 50px; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 500; 
    font-size: 0.9rem; 
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.btn-nav { 
    background: var(--secondary); 
    color: var(--white) !important; 
    padding: 12px 30px; 
    border-radius: 2px;
}

/* Cinematic Sun-Drenched Hero */
.cinematic-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    background: var(--bg-vibrant);
    color: var(--white);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-brand-badge img { height: 20px; filter: brightness(0) invert(1); }
.hero-brand-badge span { 
    font-size: 0.7rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--primary-light);
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 900;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-text h1 .highlight { 
    color: var(--primary); 
    display: inline-block;
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin-bottom: 40px;
}

.btn-royal {
    background: var(--primary);
    color: var(--secondary);
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: 0.4s;
    box-shadow: var(--shadow-vibrant);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: 0.4s;
}

.btn-royal:hover { background: var(--white); color: var(--secondary); transform: scale(1.05); }

/* Royal Seal Visual Refinement */
.royal-seal {
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-inner {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-main-logo {
    width: 100%;
    max-width: 250px;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 30px rgba(245, 158, 11, 0.4));
    animation: float 6s ease-in-out infinite, neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 30px rgba(245, 158, 11, 0.4)); }
    50% { filter: drop-shadow(0 0 25px rgba(245, 158, 11, 1)) drop-shadow(0 0 50px rgba(245, 158, 11, 0.6)); }
}

/* Floating Elements */
.floating-mango {
    position: absolute;
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(180, 83, 9, 0.2);
}

.m1 { top: 10%; left: -5%; transform: rotate(-15deg); animation: float 5s ease-in-out infinite; }
.m2 { bottom: 15%; right: -5%; transform: rotate(20deg); animation: float 7s ease-in-out infinite 1s; }

.floating-leaf {
    position: absolute;
    width: 60px;
    height: 30px;
    background: var(--secondary);
    border-radius: 0 100% 0 100%;
    z-index: 2;
}

.l1 { top: 0%; right: 10%; transform: rotate(-20deg); animation: float 4s ease-in-out infinite 0.5s; }
.l2 { bottom: 5%; left: 10%; transform: rotate(45deg); animation: float 8s ease-in-out infinite 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--rot, 0deg)); }
}

.m1 { --rot: -15deg; }
.m2 { --rot: 20deg; }
.l1 { --rot: -20deg; }
.l2 { --rot: 45deg; }

/* Scroll Indicator */
.scroll-indictor {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-indictor .mouse {
    width: 2px;
    height: 40px;
    background: var(--border-soft);
    position: relative;
    overflow: hidden;
}

.scroll-indictor .mouse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* Sections Global */
.section { padding: 80px 0; }
.section-header { margin-bottom: 60px; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 3.5rem; color: var(--secondary); margin-bottom: 20px; }
.section-header p { font-size: 1.2rem; color: var(--text-muted); }

/* Editorial Cards Compact */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Vibrant Editorial Cards */
.editorial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-editorial);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.editorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.editorial-card:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 0 40px 80px -20px rgba(6, 78, 59, 0.2);
    border-color: var(--primary);
}

.card-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.editorial-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--secondary); font-weight: 700; }
.card-history { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 25px; border-left: 2px solid var(--primary); padding-left: 15px; line-height: 1.5; }

.spec-sheet { margin-bottom: 30px; }
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.85rem;
}
.spec-row span { font-weight: 700; color: var(--secondary); width: 100px; }
.spec-row p { font-weight: 400; color: var(--text-muted); text-align: right; }

.btn-card-action {
    text-decoration: none;
    text-align: center;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    transition: 0.4s;
    margin-top: auto;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-load-more {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
}

.btn-load-more:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.editorial-grid {
    transition: max-height 0.8s ease-in-out;
    overflow: hidden;
}

.editorial-card:hover .btn-card-action { background: var(--secondary); color: var(--white); }

/* Awareness Editorial */
.awareness-editorial { background: var(--secondary); color: var(--white); position: relative; overflow: hidden; }

/* Highlight Box for CTA */
.highlight-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-vibrant);
    display: inline-block;
    max-width: 600px;
    margin: 20px auto 0;
    border: 1px solid var(--primary-light);
    position: relative;
}

.highlight-box p {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-badge {
    background: var(--bg-vibrant);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
}
.awareness-content { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 100px; 
    align-items: center; 
}

.awareness-text h2 { color: var(--white); font-size: 4rem; margin-bottom: 40px; }
.awareness-list { list-style: none; }
.awareness-list li { 
    font-size: 1.3rem; 
    margin-bottom: 30px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    padding-bottom: 20px;
}
.awareness-list b { color: var(--primary-light); font-family: var(--font-serif); font-size: 1.5rem; display: block; margin-bottom: 5px; }

/* Master Catalog List */
.catalog-section { background: #f8f8f8; }
.search-box-large {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}
.search-box-large input {
    width: 100%;
    padding: 30px 40px;
    border: none;
    border-radius: 2px;
    font-size: 1.3rem;
    box-shadow: var(--shadow-editorial);
    outline: none;
}

.catalog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.catalog-item {
    background: white;
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}
.catalog-item:hover { background: var(--primary); color: white; transform: scale(1.05); }

/* Contact Editorial */
.contact-editorial { text-align: center; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}
.contact-info-card h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
.contact-info-card p { font-size: 1.1rem; color: var(--text-muted); }

/* Premium Video Section */
.video-section {
    padding: 60px 0;
    background: var(--bg-linen);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.video-wrapper-premium {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-editorial);
    border: 1px solid var(--border-soft);
    background: #000;
}

.video-wrapper-premium iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section { padding: 60px 0; margin-top: 0; }
}

/* Compact Footer Professional */
.site-footer {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--border-soft);
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.footer-logo img { height: 55px; }
.footer-links { display: flex; flex-direction: row; align-items: center; gap: 30px; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.5px; }

/* Editorial Tooltip (Ajax Simulation) */
.editorial-tooltip {
    position: fixed;
    width: 320px;
    background: var(--bg-linen);
    border: 1px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.editorial-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.editorial-tooltip h4 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 10px;
}

.tooltip-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tooltip-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.tooltip-specs span::before {
    content: '◈ ';
    color: var(--primary);
}

/* Responsive Optimizations */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 60px; padding-top: 40px; }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .royal-seal { width: 350px; height: 350px; margin: 0 auto; }
    .awareness-content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .awareness-text h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .luxury-nav { 
        position: absolute; /* Navigation scrolls away on mobile to save space */
        padding: 20px 0; 
        background: var(--bg-linen); 
    }
    .luxury-nav .container { flex-direction: column; gap: 15px; }
    .nav-links { gap: 12px; font-size: 0.7rem; flex-wrap: wrap; justify-content: center; }
    .brand-logo { display: none; }
    .btn-nav { padding: 6px 15px; }
    
    .cinematic-hero { 
        padding-top: 180px; /* Account for absolute nav height */
        padding-bottom: 60px;
        min-height: auto; 
    }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-brand-badge { margin-bottom: 15px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .btn-royal, .btn-outline { width: 100%; text-align: center; padding: 18px 25px; font-size: 0.85rem; }
    
    .hero-visual { padding-top: 40px; }
    .royal-seal { width: 240px; height: 240px; }
    .hero-main-logo { max-width: 140px; }
    .floating-mango, .floating-leaf { display: none; }
    
    .video-section { 
        padding: 40px 0; 
        margin-top: 0; /* Remove negative margin to prevent overlap */
    }
    
    .editorial-grid { grid-template-columns: 1fr; gap: 20px; }
    .catalog-container { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .section-header h2 { font-size: 2rem; }
    .awareness-text h2 { font-size: 1.8rem; }
    .awareness-list li { font-size: 1rem; }
    
    .editorial-tooltip { display: none !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-text h1 { font-size: 2rem; }
    .catalog-container { grid-template-columns: 1fr; }
    .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
    .scroll-indictor { display: none; }
    
    .contact-badge { font-size: 1rem; padding: 8px 15px; }
    .highlight-box p { font-size: 1rem; }
    
    .site-footer { padding: 30px 0; }
    .footer-content { gap: 15px; }
    .footer-links { gap: 15px; }
    .footer-logo img { height: 40px; }
}

/* Animations Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
