/* ==========================================
   ENNMART - LAUNCH PAGE V2
========================================== */

:root{
    --primary:#F0436E;
    --secondary:#018BAF;
    --success:#25D366;
    --dark:#1F2937;
    --light:#F8FAFC;
    --gray:#6B7280;
    --white:#FFFFFF;
    --border:#E5E7EB;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================================
   COMMON
========================================== */

section{
    padding:90px 0;
}

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

.section-tag{
    display:inline-block;
    background:rgba(240,67,110,.1);
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 36px;
    border-radius:50px;
    font-weight:600;
    font-size:17px;
    transition:.3s;
}

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

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(240,67,110,.3);
}

.btn-secondary{
    background:#fff;
    color:var(--dark);
}

.btn-secondary:hover{
    transform:translateY(-3px);
}

::selection{
    background:var(--primary);
    color:#fff;
}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    min-height:100vh;
    background:url('../images/hero-bg.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.45));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:820px;
    color:#fff;
    padding:20px;
}

.hero-tamil{
    font-size:24px;
    font-weight:500;
    color:rgba(255,255,255,.92);
    margin-bottom:25px;
}

.logo{
    max-width:220px;
    margin:0 auto 20px;
}

.launch-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.15;
}

.divider{
    width:120px;
    height:4px;
    background:var(--primary);
    margin:0 auto 25px;
    border-radius:10px;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.hero-categories{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 18px;
    max-width:850px;
    margin:0 auto 35px;
    font-size:17px;
    line-height:1.8;
}

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

.hero-trust{
    margin-top:25px;
    color:rgba(255,255,255,.85);
    font-size:15px;
    font-weight:500;
    letter-spacing:.5px;
}

/* ==========================================
   STORY
========================================== */

.story{
    background:var(--light);
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:40px;
    align-items:center;
}

.story-content h2{
    font-size:48px;
    margin-bottom:25px;
}

.story-content p{
    font-size:22px;
    margin-bottom:10px;
}

.story-content .highlight{
    color:var(--primary);
    font-weight:700;
    margin-top:20px;
}

.story-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

/* ==========================================
   CATEGORY
========================================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    height:340px;
    cursor:pointer;
    border:1px solid rgba(0,0,0,.05);
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.category-card:hover img{
    transform:scale(1.1);
}

.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.10)
    );
    display:flex;
    align-items:flex-end;
    padding:25px;
}

.card-overlay h3{
    color:#fff;
    font-size:24px;
}

/* ==========================================
   WHY
========================================== */

.why{
    background:var(--light);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.why-card i{
    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:var(--gray);
}

/* ==========================================
   STATS
========================================== */

.stats{
    background:#fff;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    text-align:center;
}

.stats-grid div{
    padding:35px 25px;
    background:#fff;
    border-radius:20px;
    border:1px solid var(--border);
    transition:.3s;
}

.stats-grid div:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stats-grid h3{
    font-size:36px;
    line-height:1.2;
    word-break:break-word;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.stats-grid p{
    color:var(--gray);
    font-weight:500;
}

/* ==========================================
   SELLER CTA
========================================== */

.seller-cta{
    text-align:center;
    color:#fff;
    padding:120px 20px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../images/story.jpg') center/cover;
}

.seller-cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.seller-cta p{
    max-width:800px;
    margin:0 auto 30px;
    font-size:18px;
}

/* ==========================================
   NOTIFY
========================================== */

.notify{
    text-align:center;
    background:#fff;
}

.notify h2{
    font-size:40px;
    margin-bottom:15px;
}

.notify p{
    margin-bottom:25px;
    color:var(--gray);
}

.notify-form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.notify-form input{
    width:380px;
    max-width:100%;
    padding:16px 22px;
    border:1px solid var(--border);
    border-radius:50px;
    outline:none;
}

.notify-form button{
    background:var(--secondary);
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
}

.notify-note{
    margin-top:15px;
    font-size:14px;
    color:var(--gray);
}

.notify-form input:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 4px rgba(1,139,175,.15);
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#111827;
    color:#fff;
    text-align:center;
    padding:70px 20px;
    border-top:4px solid var(--primary);
}

.footer-logo{
    max-width:180px;
    margin:0 auto 20px;
}

footer h3{
    margin-bottom:20px;
}

.footer-contact{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.footer-contact a{
    color:#fff;
    transition:.3s;
}

.footer-contact a:hover{
    color:var(--primary);
}

.footer-links{
    margin:20px 0;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#fff;
    opacity:.85;
    transition:.3s;
}

.footer-links a:hover{
    opacity:1;
    color:var(--primary);
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
}

.footer-description{
    max-width:650px;
    line-height:1.8;
    margin:0 auto 25px;
    color:#d1d5db;
}

/* ==========================================
   WHATSAPP FLOAT
========================================== */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--success);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.whatsapp-float:hover{
    transform:scale(1.08);
    transition:.3s ease;
}

/* ==========================================
   HERO - DESKTOP & MOBILE
========================================== */

.hero-desktop{
    display:flex;
}

.hero-mobile{
    display:none;
}

.hero-mobile-description{
    max-width:330px;
    margin:0 auto 28px;
    font-size:16px;
    line-height:1.7;
}

.scroll-down{
    margin-top:28px;
    color:#fff;
    opacity:.8;
    font-size:14px;
    letter-spacing:.5px;
}



/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

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

.story-content{
    text-align:center;
}

}

@media(max-width:768px){

section{
    padding:70px 0;
}

.hero-desktop{
    display:none;
}

.hero-mobile{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
}

.hero-mobile .hero-content{
    padding:30px 20px;
}

.hero-mobile h1{
    font-size:34px;
    line-height:1.25;
    margin-bottom:18px;
}

.hero-mobile .logo{
    width:170px;
    margin-bottom:20px;
}

.hero-mobile .launch-badge{
    margin-bottom:20px;
}

.hero-mobile .hero-buttons{
    flex-direction:column;
    gap:14px;
}

.hero-mobile .btn{
    width:100%;
}

.hero-mobile .hero-trust{
    margin-top:24px;
    font-size:14px;
    line-height:1.6;
}

.category-card{
    height:260px;
}

.section-heading h2{
    font-size:30px;
}

.story-content h2{
    font-size:34px;
}

.story-content p{
    font-size:18px;
}

.seller-cta h2{
    font-size:32px;
}

.notify h2{
    font-size:30px;
}

.notify-form input{
    width:100%;
}

.logo{
    max-width:180px;
}

.hero-tamil{
    font-size:20px;
}

}

/* ==========================================
   REVEAL ANIMATION
========================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.revealed{
    opacity:1;
    transform:translateY(0);
}

/* ==========================================
   TOAST
========================================== */

.toast{
    position:fixed;
    top:30px;
    right:30px;
    min-width:280px;
    padding:15px 20px;
    border-radius:12px;
    color:#fff;
    font-weight:500;
    z-index:9999;
    opacity:0;
    transform:translateY(-20px);
    transition:.3s ease;
}

.toast.show{
    opacity:1;
    transform:translateY(0);
}

.toast.success{
    background:#25D366;
}

.toast.error{
    background:#EF4444;
}