/* --- CORE CONFIGURATION & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #e52d6a;       /* Magenta Pink */
    --secondary: #7c4dff;     /* Accent Purple */
    --dark-blue: #181824;     /* Dark Slate */
    --accent: #1e88e5;        /* Light blue */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafd;
    --bg-card: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Category Colors */
    --c-kahani-bg: #fdf2f4;
    --c-kahani-text: #e52d6a;
    --c-shayari-bg: #f5f0ff;
    --c-shayari-text: #7c4dff;
    --c-books-bg: #eef5ff;
    --c-books-text: #1e88e5;
    --c-travel-bg: #eefff0;
    --c-travel-text: #43a047;
    --c-events-bg: #fff9ee;
    --c-events-text: #ff9800;
    --c-community-bg: #fdf2f8;
    --c-community-text: #db2777;
    
    --border-radius: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.04);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.08);
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

.heading-block {
    text-align: center;
    margin-bottom: 3.5rem;
}

.heading-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.heading-block h2 span {
    border-bottom: 3px solid var(--primary);
}

.heading-block p {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn-blue {
    background-color: var(--secondary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-blue:hover {
    background-color: #0097a7;
    transform: translateY(-1px);
}

/* --- SECTION 1: HERO VIEWPORT --- */
.hero-banner {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-banner h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-banner p {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* --- SECTION 2: INTEGRATED BAR --- */
.search-stripe {
    max-width: 1140px;
    width: 92%;
    background: white;
    margin: -4rem auto 0 auto;
    position: relative;
    z-index: 100;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    padding: 1.5rem;
}

.stripe-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.field-box input, .field-box select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background-color: #fafafa;
    outline: none;
    font-size: 0.9rem;
}

/* --- SECTION 3: CORE GRID --- */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.img-wrapper {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.card-body {
    padding: 1.25rem;
}

.card-body h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.meta-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
}

/* --- SECTION 4: SPLIT FEATURE OVERLAY --- */
.split-showcase {
    background: white;
    padding: 6rem 0;
}

.split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text {
    background: var(--bg-light);
    padding: 3rem;
    border-left: 5px solid var(--primary);
    border-radius: 4px;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

/* --- SECTION 5: CATEGORIES SLIDER BAR --- */
.categories-bar {
    background: white;
    border-top: 1px solid #edf2f7;
    padding: 4rem 0;
    text-align: center;
}

.icon-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.icon-item i {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.icon-item:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

/* --- SECTION 6: SUBSCRIPTION STRIPE --- */
.subscribe-stripe {
    background: linear-gradient(135deg, #a3e635 0%, #06b6d4 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.subscribe-stripe h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.subscribe-form {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.subscribe-form input {
    padding: 0.85rem 1.5rem;
    width: 350px;
    border: none;
    border-radius: 4px;
    outline: none;
}

/* --- SECTION 7: MASONRY / NEWS GRID --- */
.news-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tile {
    position: relative;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
}

.tile.wide { grid-column: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.tile:hover img { transform: scale(1.05); }

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: white;
}

/* --- SECTION 8: CONTACT MAP SYNC --- */
.map-section {
    width: 100%;
    height: 400px;
    background: #e5e7eb;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* --- FOOTER --- */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col p, .footer-col li {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 0.6rem;
}
.footer-col a {
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #a0aec0;
}

/* Navbar base styles */
.navbar-links {
    display: flex;
    gap: 2.2rem;
}
.navbar-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
}
.navbar-links a:hover, .navbar-links a.active {
    color: var(--primary);
}
.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Responsive Card Utility */
.responsive-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.responsive-card.centered {
    text-align: center;
    padding: 4rem;
}
.responsive-card.login-card {
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 1024px) {
    .stripe-form { grid-template-columns: repeat(2, 1fr); }
    .split-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }

    .mobile-toggle {
        display: block;
        z-index: 1002; /* Float above the navigation drawer */
    }
    .navbar-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: var(--transition);
        box-shadow: -4px 0 15px rgba(0,0,0,0.2);
        transform: translateX(100%);
        z-index: 1001; /* Show above main content but below toggle button */
    }
    .navbar-links.active {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-banner h1 { font-size: 2.8rem; }
    .stripe-form { grid-template-columns: 1fr; }
    .news-tiles { grid-template-columns: 1fr; }
    .tile.wide { grid-column: span 1; }
    .footer-cols { grid-template-columns: 1fr; }
    .subscribe-form { flex-direction: column; align-items: center; }
    .subscribe-form input, .subscribe-form button { width: 100%; max-width: 350px; }
    
    /* Responsive paddings for cards */
    .responsive-card {
        padding: 1.5rem !important;
    }
    .responsive-card.centered {
        padding: 2rem 1.5rem !important;
    }
    .responsive-card.login-card {
        padding: 30px 20px !important;
    }
    .split-text {
        padding: 1.5rem;
    }
}

/* --- PREMIUM MODERN SITE DESIGN ADDITIONS --- */

/* Header Redesign */
header.premium-header {
    background: #ffffff !important;
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #f1f5f9;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.premium-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
}
.premium-logo span.brand-italic {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-right: 2px;
}
.premium-logo span.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-top: -6px;
    text-transform: uppercase;
}
.premium-logo i.quill-icon {
    color: var(--primary);
    font-size: 1.2rem;
    transform: rotate(-45deg);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.menu-drawer-btn {
    display: none;
    font-size: 1.25rem;
    color: var(--text-main);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.menu-drawer-btn:hover {
    color: var(--primary);
}
.header-nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-nav-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}
.header-nav-menu a:hover,
.header-nav-menu a.active {
    color: var(--primary);
}
.header-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.header-nav-menu a:hover::after,
.header-nav-menu a.active::after {
    width: 100%;
}
.search-icon-btn {
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}
.search-icon-btn:hover {
    color: var(--primary);
}
.join-community-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.join-community-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Sidebar Navigation Drawer */
.menu-drawer-btn {
    font-size: 1.5rem;
    color: var(--dark-blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: none; /* Hide by default on desktop */
    align-items: center;
}
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: var(--dark-blue);
    color: white;
    z-index: 2000;
    padding: 3rem 2rem;
    transform: translateX(-100%);
    transition: var(--transition);
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
}
.nav-drawer.active {
    transform: translateX(0);
}
.nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.nav-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.drawer-logo {
    margin-bottom: 3rem;
}
.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.drawer-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}
.drawer-links a:hover, .drawer-links a.active {
    color: var(--primary);
    padding-left: 5px;
}

/* Two Column Hero Layout */
.hero-split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 6rem 5% 4rem 5%;
    overflow: hidden;
}
.hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-left-col h1.hero-main-title {
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-align: left;
}
.hero-left-col h1.hero-main-title span.hl-pink {
    color: var(--primary);
    font-family: inherit;
    border-bottom: none;
}
.hero-left-col h1.hero-main-title span.hl-purple {
    color: var(--secondary);
    font-family: inherit;
}
.hero-left-col p.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
    text-align: left;
}
.hero-btn-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.btn-pink-solid {
    background-color: var(--primary);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-pink-solid:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
}
.btn-dark-outline {
    background-color: transparent;
    color: var(--dark-blue);
    padding: 0.85rem 2rem;
    border: 2px solid var(--dark-blue);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-dark-outline:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
}
.readers-social-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
    width: 100%;
}
.readers-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.avatar-stack {
    display: flex;
}
.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}
.avatar-stack img:first-child {
    margin-left: 0;
}
.readers-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}
.social-follow-section {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-follow-section span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.social-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-badge:hover {
    transform: translateY(-2px);
}
.social-badge.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-badge.facebook { background: #1877f2; }
.social-badge.youtube { background: #ff0000; }
.social-badge.whatsapp { background: #25d366; }

.hero-right-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-container {
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.floating-quote-card {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    max-width: 240px;
    border-left: 4px solid var(--primary);
    animation: floatAnimation 4s ease-in-out infinite;
    z-index: 10;
}
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.floating-quote-card i.quote-start {
    color: var(--primary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}
.floating-quote-card p {
    font-size: 0.9rem;
    color: var(--text-main);
    font-family: 'Lora', serif;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 8px;
}
.floating-quote-card i.quote-heart {
    color: var(--primary);
    font-size: 1rem;
    display: block;
    text-align: right;
}

/* Category Grid Redesign */
.categories-container {
    background: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.categories-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.category-item-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.category-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.category-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.category-item-card.c-kahani .category-icon-circle { background-color: var(--c-kahani-bg); color: var(--c-kahani-text); }
.category-item-card.c-shayari .category-icon-circle { background-color: var(--c-shayari-bg); color: var(--c-shayari-text); }
.category-item-card.c-books .category-icon-circle { background-color: var(--c-books-bg); color: var(--c-books-text); }
.category-item-card.c-travel .category-icon-circle { background-color: var(--c-travel-bg); color: var(--c-travel-text); }
.category-item-card.c-events .category-icon-circle { background-color: var(--c-events-bg); color: var(--c-events-text); }
.category-item-card.c-community .category-icon-circle { background-color: var(--c-community-bg); color: var(--c-community-text); }

.category-item-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}
.category-item-card span.explore-arrow {
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}
.category-item-card.c-kahani span.explore-arrow { color: var(--c-kahani-text); }
.category-item-card.c-shayari span.explore-arrow { color: var(--c-shayari-text); }
.category-item-card.c-books span.explore-arrow { color: var(--c-books-text); }
.category-item-card.c-travel span.explore-arrow { color: var(--c-travel-text); }
.category-item-card.c-events span.explore-arrow { color: var(--c-events-text); }
.category-item-card.c-community span.explore-arrow { color: var(--c-community-text); }

.category-item-card:hover span.explore-arrow {
    transform: translateX(4px);
    display: inline-block;
}

/* Welcome Section (Desktop view) */
.welcome-section {
    padding: 4rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}
.welcome-left-col img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    max-height: 400px;
    width: 100%;
}
.welcome-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.welcome-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.welcome-right-col h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    text-align: left;
}
.welcome-right-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    text-align: left;
}
.welcome-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid #edf2f7;
    padding-top: 1.25rem;
}
.welcome-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.btn-welcome-outline {
    background-color: transparent;
    color: var(--primary);
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-welcome-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Redesigned Cards Grid for index sections */
.stories-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}
.stories-header-row h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}
.stories-header-row a.view-all-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.stories-header-row a.view-all-link:hover {
    color: #c2185b;
    transform: translateX(2px);
}
.stories-grid-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.story-premium-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.story-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.story-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.story-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.story-premium-card:hover .story-card-media img {
    transform: scale(1.05);
}
.story-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    color: white;
}
.story-card-badge.badge-kahani { background-color: var(--primary); }
.story-card-badge.badge-shayari { background-color: var(--secondary); }
.story-card-badge.badge-travel { background-color: #43a047; }
.story-card-badge.badge-event { background-color: #ff9800; }

.story-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.story-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.4;
    margin-bottom: 8px;
}
.story-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.story-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

/* Promo banners split layout */
.promo-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    color: white;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}
.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.promo-card-tag {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.promo-card.promo-travel .promo-card-tag { color: #00bcd4; }
.promo-card.promo-events .promo-card-tag { color: #ff8a80; }

.promo-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.promo-card p {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 360px;
}
.promo-card .btn-promo {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.promo-card.promo-travel .btn-promo { background-color: #0084ff; }
.promo-card.promo-events .btn-promo { background-color: var(--primary); }
.promo-card .btn-promo:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Newsletter Subscription section */
.stay-connected-stripe {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid #f1f5f9;
    margin: 3rem 0;
}
.sc-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--c-kahani-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.sc-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4px;
}
.sc-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.sc-form {
    display: flex;
    gap: 8px;
}
.sc-form input[type="email"] {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 280px;
    outline: none;
    font-size: 0.9rem;
    background-color: #fafafa;
}
.sc-form button.btn-subscribe {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.sc-form button.btn-subscribe:hover {
    background-color: #d81b60;
}

/* Trust Badges section */
.trust-badges-container {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: 2rem;
    width: 100%;
}
.trust-badges-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-badge-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.trust-badge-item.tb-original .trust-badge-icon-wrap { border-color: #43a047; color: #43a047; background-color: #eefff0; }
.trust-badge-item.tb-passion .trust-badge-icon-wrap { border-color: var(--primary); color: var(--primary); background-color: var(--c-kahani-bg); }
.trust-badge-item.tb-community .trust-badge-icon-wrap { border-color: var(--secondary); color: var(--secondary); background-color: var(--c-shayari-bg); }
.trust-badge-item.tb-safe .trust-badge-icon-wrap { border-color: #00bcd4; color: #00bcd4; background-color: #eefbff; }

.trust-badge-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1px;
}
.trust-badge-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Sticky App Bottom Tab Bar Navigation */
.bottom-nav-bar {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: none; /* Hide by default (desktop) */
    grid-template-columns: repeat(5, 1fr);
    padding: 10px 0;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    max-width: 600px;
    margin: 3rem auto;
    width: 90%;
    z-index: 1800;
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: var(--transition);
}
.bottom-nav-item:hover, .bottom-nav-item.active {
    color: var(--primary);
}

/* --- PREMIUM LIGHT FOOTER --- */
footer.premium-light-footer {
    background-color: #ffffff !important;
    color: var(--text-main) !important;
    padding: 4rem 5% 2rem 5% !important;
    border-top: 1px solid #edf2f7;
    font-size: 0.9rem;
    width: 100%;
}
.footer-cols-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-brand-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}
.footer-social-links {
    display: flex;
    gap: 10px;
}
.footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-links-two-cols {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 8px 15px;
}
.footer-links-two-cols a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}
.footer-links-two-cols a:hover {
    color: var(--primary);
    padding-left: 2px;
}

.footer-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 240px;
}
.footer-tag-pill {
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid;
}
.footer-tag-pill.t-love { border-color: #fce7f3; color: #db2777; background-color: #fdf2f8; }
.footer-tag-pill.t-love:hover { background-color: #fce7f3; }
.footer-tag-pill.t-sad { border-color: #ffedd5; color: #ea580c; background-color: #fff7ed; }
.footer-tag-pill.t-sad:hover { background-color: #ffedd5; }
.footer-tag-pill.t-books { border-color: #dbeafe; color: #2563eb; background-color: #eff6ff; }
.footer-tag-pill.t-books:hover { background-color: #dbeafe; }
.footer-tag-pill.t-motivation { border-color: #f3e8ff; color: #7c3aed; background-color: #faf5ff; }
.footer-tag-pill.t-motivation:hover { background-color: #f3e8ff; }
.footer-tag-pill.t-travel { border-color: #e0f2fe; color: #0284c7; background-color: #f0f9ff; }
.footer-tag-pill.t-travel:hover { background-color: #e0f2fe; }
.footer-tag-pill.t-events { border-color: #fae8ff; color: #c084fc; background-color: #fdf4ff; }
.footer-tag-pill.t-events:hover { background-color: #fae8ff; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-contact-item i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-copyright-stripe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.scroll-top-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.scroll-top-btn:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
}


/* Redesigned Stay Connected Grid (side by side layout) */
.stay-connected-grid-stripe {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid #f1f5f9;
}
.sc-left-newsletter {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.sc-content-form-wrap {
    display: flex;
    flex-direction: column;
}
.sc-right-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    border-left: 1px solid #edf2f7;
    padding-left: 3rem;
}
.sc-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sc-badge-info h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1px;
}
.sc-badge-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Visibility Utilities */
.hide-desktop { display: none !important; }
.hide-mobile { display: block; }

/* Responsive Overrides */
@media (max-width: 1024px) {
    .header-nav-menu { display: none !important; }
    .menu-drawer-btn { display: flex !important; }
    .hero-split-section { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-left-col { align-items: center; }
    .hero-btn-row { justify-content: center; }
    .readers-social-row { justify-content: center; }
    .categories-list { grid-template-columns: repeat(3, 1fr); }
    .stories-grid-layout { grid-template-columns: repeat(2, 1fr); }
    .promo-banners-grid { grid-template-columns: 1fr; }
    .stay-connected-grid-stripe {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sc-right-badges {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #edf2f7;
        padding-top: 1.5rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body { padding-bottom: 65px; /* offset bottom navigation */ }
    .hide-mobile { display: none !important; }
    .hide-desktop { display: block !important; }
    
    .bottom-nav-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid #f1f5f9;
        margin: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        display: grid;
    }
    header.premium-header { padding: 0.6rem 1rem; }
    .header-right { gap: 0.75rem; }
    .join-community-btn {
        display: inline-flex !important; /* Visible on mobile */
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }
    .premium-logo span.brand-italic {
        font-size: 1.8rem;
    }
    .premium-logo span.brand-sub {
        font-size: 0.55rem;
        margin-top: 2px;
    }
    .premium-logo i.quill-icon {
        font-size: 0.9rem;
    }
    .categories-list { grid-template-columns: repeat(3, 1fr); } /* 3 columns on mobile as in image */
    .stories-grid-layout { grid-template-columns: 1fr; }
    
    footer.premium-light-footer {
        display: none !important; /* Hide footer columns on mobile to match mockup */
    }
    
    .sc-left-newsletter {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .sc-form {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 8px;
    }
    .sc-form input {
        width: 100% !important;
    }
    .sc-right-badges {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Photography Gallery Showcase & Lightbox Styles */
.gallery-tab {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.gallery-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.gallery-showcase-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-showcase-img-wrap {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}
.gallery-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 36, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.gallery-showcase-img-wrap:hover .gallery-showcase-overlay {
    opacity: 1;
}
.gallery-showcase-img-wrap:hover img {
    transform: scale(1.08);
}
.gallery-showcase-overlay h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
.gallery-showcase-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    color: white;
}
.gallery-showcase-tag.tag-photo {
    background-color: var(--primary);
}
.gallery-showcase-tag.tag-poster {
    background-color: var(--secondary);
}
.gallery-showcase-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-lightbox.show {
    opacity: 1;
}
.lightbox-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-modal-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.gallery-lightbox.show .lightbox-modal-content img {
    transform: scale(1);
}
#lightboxCaption {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f5f9;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}
.lightbox-close:hover {
    color: var(--primary);
}
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}