/* ═══════════════════════════════════════════════════════════════
   Kovai Guide Directory - Main Stylesheet
   ═══════════════════════════════════════════════════════════════
   COLOR CONFIG — Change these CSS variables to retheme
   ═══════════════════════════════════════════════════════════════ */

:root {
    --primary:    #8B1A1A;    /* Deep Maroon */
    --secondary:  #D4A017;    /* Gold */
    --accent-bg:  #F5F0E8;    /* Warm Light */
    --text-color: #2D2D2D;    /* Dark Text */
    --text-light: #666666;
    --white:      #FFFFFF;
    --light-gray: #F8F8F8;
    --border:     #E5E5E5;
    --shadow:     0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --radius:     10px;
    --font:       'Poppins', sans-serif;
}


/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */

.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

/* Logo */
.site-logo a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.site-logo a:hover {
    color: var(--secondary);
}

/* Desktop Nav */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}


/* ═══════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════ */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-menu-close {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-left: auto;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-menu li a {
    display: block;
    padding: 14px 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: background 0.3s ease;
}

.mobile-nav-menu li a:hover {
    background: var(--accent-bg);
    color: var(--primary);
}


/* ═══════════════════════════════════════
   MAIN CONTENT AREA
   ═══════════════════════════════════════ */

.site-main {
    min-height: calc(100vh - 130px);
}

.content-area {
    padding: 40px 0;
}


/* ═══════════════════════════════════════
   HERO SECTION (Homepage)
   ═══════════════════════════════════════ */

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #5C1010 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════ */

.section-block {
    padding: 50px 0;
}

.section-block:nth-child(even) {
    background: var(--light-gray);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}


/* ═══════════════════════════════════════
   CATEGORY GRID (Place & Business categories)
   ═══════════════════════════════════════ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.category-card .cat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.category-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.category-card .cat-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.view-all-link {
    display: inline-block;
    background: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--primary);
    color: var(--white);
}


/* ═══════════════════════════════════════
   POST CARDS (Places, Businesses, Blog)
   ═══════════════════════════════════════ */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 8px;
}

.badge-place {
    background: #E8F5E9;
    color: #2E7D32;
}

.badge-business {
    background: #FFF3E0;
    color: #E65100;
}

.badge-featured {
    background: var(--secondary);
    color: var(--white);
}

.badge-verified {
    background: #E3F2FD;
    color: #1565C0;
}

.post-card-content {
    padding: 18px;
}

.post-card-content h3,
.post-card-content h2 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-card-content h3 a,
.post-card-content h2 a {
    color: var(--text-color);
}

.post-card-content h3 a:hover,
.post-card-content h2 a:hover {
    color: var(--primary);
}

.post-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.read-more-link:hover {
    color: var(--secondary);
}


/* ═══════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════ */

.search-section {
    background: var(--accent-bg);
    padding: 30px 0;
    text-align: center;
}

.search-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.search-form-wrap {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-form-wrap input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font);
    outline: none;
    transition: border 0.3s ease;
}

.search-form-wrap input[type="search"]:focus {
    border-color: var(--primary);
}

.search-form-wrap button {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form-wrap button:hover {
    background: var(--secondary);
}


/* ═══════════════════════════════════════
   SINGLE PAGE (Place / Business detail)
   ═══════════════════════════════════════ */

.single-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.single-content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.single-meta-badges {
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.single-content-area h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-content-area h2 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.single-content-area h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.single-content-area p {
    margin-bottom: 16px;
    line-height: 1.7;
}


/* Info Box (Visitor Info / Contact Details) */
.info-box {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.info-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.info-row {
    padding: 8px 0;
    font-size: 0.93rem;
    line-height: 1.5;
}

.info-row strong {
    display: inline;
}


/* ═══════════════════════════════════════
   GALLERY (WordPress Default)
   ═══════════════════════════════════════ */

.wp-block-gallery,
.gallery {
    margin: 24px 0;
}

.gallery-item img {
    border-radius: 6px;
}


/* ═══════════════════════════════════════
   REVIEWS & RATINGS
   ═══════════════════════════════════════ */

.reviews-section {
    margin: 30px 0;
}

.reviews-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-item {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 14px;
}

.review-stars {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 6px;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* Review Form */
.review-form {
    margin-top: 24px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.review-form h3 {
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.93rem;
    font-family: var(--font);
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s ease;
}

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


/* ═══════════════════════════════════════
   FRONTEND FORMS (Add Business, Event, Offer)
   ═══════════════════════════════════════ */

.frontend-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0;
}

.frontend-form h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.frontend-form .form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Plan Selection Cards */
.plan-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.plan-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card:hover,
.plan-card.selected {
    border-color: var(--primary);
    background: #FFF5F5;
}

.plan-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.plan-card .plan-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.plan-card .plan-features {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}


/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */

.pagination {
    text-align: center;
    padding: 20px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.site-footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 24px 20px;
    font-size: 0.88rem;
}

.site-footer a {
    color: var(--secondary);
}


/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ═══════════════════════════════════════
   NO RESULTS
   ═══════════════════════════════════════ */

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
}


/* ═══════════════════════════════════════
   SUCCESS / ERROR MESSAGES
   ═══════════════════════════════════════ */

.form-message {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.93rem;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}


/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ═══════════════════════════════════════ */

@media (max-width: 768px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

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

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .plan-selection {
        grid-template-columns: 1fr;
    }

    .single-banner {
        height: 220px;
    }
}


/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (480px)
   ═══════════════════════════════════════ */

@media (max-width: 480px) {

    .header-container {
        height: 55px;
    }

    .site-logo a {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-section h1 {
        font-size: 1.3rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 16px 10px;
    }

    .category-card .cat-icon {
        font-size: 1.5rem;
    }

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

    .section-block {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .search-form-wrap {
        flex-direction: column;
    }

    .single-content-area h1 {
        font-size: 1.4rem;
    }
}

/* ═══════════════════════════════════════
   PHASE 7 CSS — ADD AT BOTTOM OF:
   /wp-content/themes/chennai-theme/assets/css/main.css
   (Do NOT delete existing code — just paste at the end)
   ═══════════════════════════════════════ */


/* ─── BREADCRUMBS ─── */
.breadcrumbs {
    background: var(--light-gray);
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs span {
    color: #888;
}


/* ─── SINGLE PAGE BANNER ─── */
.single-banner-wrap {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.single-banner {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}


/* ─── SINGLE PAGE CONTENT ─── */
.single-content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.single-content-area h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.single-content-area h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary);
}

.single-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.single-meta-badges a {
    color: inherit;
}

.entry-content {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.entry-content p {
    margin-bottom: 14px;
}


/* ─── INFO BOX (Visitor Info / Contact Details) ─── */
.info-box {
    background: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.info-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-row:last-child {
    border-bottom: none;
}


/* ─── HIGHLIGHTS ─── */
.highlights-section {
    background: #FFF8E1;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 20px;
}

.highlights-list p {
    margin: 6px 0;
    font-size: 0.95rem;
}


/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #6B1515;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white) !important;
}


/* ─── REVIEWS ─── */
.reviews-section {
    margin-top: 30px;
}

.review-item {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.review-author {
    font-weight: 600;
    margin-bottom: 4px;
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ─── REVIEW FORM ─── */
.review-form {
    margin-top: 30px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 10px;
}


/* ─── FRONTEND FORMS (Add Business, Post Event, Submit Offer, Contact) ─── */
.frontend-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0 60px;
}

.frontend-form h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-intro {
    color: #888;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

.form-group input[type="file"] {
    padding: 10px;
    background: var(--light-gray);
    border: 1px dashed var(--border);
    border-radius: 6px;
    width: 100%;
}


/* ─── FORM MESSAGES (Success/Error) ─── */
.form-message {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}


/* ─── PLAN SELECTION CARDS ─── */
.plan-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--primary);
}

.plan-card.selected {
    border-color: var(--primary);
    background: rgba(139, 26, 26, 0.05);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.15);
}

.plan-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.plan-features {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .plan-selection {
        grid-template-columns: 1fr;
    }
}


/* ─── PRICING PAGE ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
}

.pricing-featured {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.15);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pricing-amount {
    margin-bottom: 20px;
}

.pricing-currency {
    font-size: 1rem;
    vertical-align: super;
}

.pricing-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-feature {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: none;
    }
}


/* ─── BADGES (Featured, Verified, etc.) ─── */
.badge-featured {
    background: #FFF8E1 !important;
    color: #F57F17 !important;
    font-weight: 600;
}

.badge-verified {
    background: #E3F2FD !important;
    color: #1565C0 !important;
    font-weight: 600;
}


/* ─── NO RESULTS ─── */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    margin-bottom: 12px;
    color: #555;
}

.no-results p {
    color: #888;
    margin-bottom: 20px;
}


/* ─── PAGINATION ─── */
.pagination {
    text-align: center;
    padding: 30px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .page-numbers:hover {
    border-color: var(--primary);
}


/* ─── CONTENT AREA (archives) ─── */
.content-area {
    padding: 30px 0;
}

/* ═══════════════════════════════════════
   TWO-COLUMN SIDEBAR LAYOUT CSS
   ADD AT BOTTOM OF: assets/css/main.css
   (Do NOT delete existing code)
   ═══════════════════════════════════════ */


/* ─── FULL-WIDTH BANNER (edge to edge) ─── */
.single-banner-fullwidth {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 500px;
    background: #222;
}

.single-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.banner-overlay-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #4CAF50;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 5;
}


/* ─── TITLE AREA (below banner) ─── */
.single-title-area {
    padding: 20px 0 14px;
    border-bottom: 1px solid var(--border);
}

.single-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.single-title-row h1 {
    font-size: 1.7rem;
    margin: 0;
    line-height: 1.3;
}

.badge-inline {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-inline.featured {
    background: #4CAF50;
    color: #fff;
}

.badge-inline.verified {
    background: #4CAF50;
    color: #fff;
}

.single-meta-line {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #666;
}

.single-meta-line a {
    color: var(--primary);
    text-decoration: underline;
}


/* ─── TWO-COLUMN GRID ─── */
.single-two-col {
    padding: 30px 0 60px;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── LEFT COLUMN ─── */
.col-content {
    min-width: 0;
}

.content-block {
    margin-bottom: 30px;
}

.content-heading-bar {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    padding-left: 14px;
    border-left: 4px solid var(--primary);
    margin-bottom: 16px;
    margin-top: 0;
}


/* ─── RIGHT COLUMN: SIDEBAR ─── */
.col-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: #F9F9F9;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: break-word;
}

.sidebar-row:last-child {
    border-bottom: none;
}

.sidebar-row a {
    color: var(--primary);
}

.sidebar-claim p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}


/* ─── WHATSAPP BUTTON ─── */
.btn-whatsapp {
    display: block;
    background: #25D366;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1DA851;
}


/* ─── GOOGLE MAPS BUTTON ─── */
.btn-maps {
    display: block;
    background: var(--white);
    color: #333 !important;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}


/* ─── GALLERY GRID ─── */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-thumb-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.gallery-thumb-img:hover {
    transform: scale(1.05);
}


/* ─── HIGHLIGHTS BOX ─── */
.highlights-box {
    background: #FFF8E1;
    border-radius: 8px;
    padding: 16px 20px;
}

.highlights-box p {
    margin: 6px 0;
    font-size: 0.95rem;
}


/* ─── TAG PILLS (Ideal For, Popular Searches) ─── */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}


/* ─── OFFER DISCOUNT BANNER ─── */
.offer-discount-banner {
    background: linear-gradient(135deg, #8B1A1A 0%, #D4A017 100%);
    color: #fff;
    padding: 16px 0;
    text-align: center;
    font-size: 1.3rem;
}


/* ─── TERMS BOX ─── */
.terms-box {
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

/* ═══════════════════════════════════════
   🔧 CRITICAL FIX — Paste at VERY BOTTOM of:
   /wp-content/themes/chennai-theme/assets/css/main.css
   ═══════════════════════════════════════ */

/* ─── FIX: Two-Column Grid MUST activate ─── */
.two-col-grid {
    display: grid !important;
    grid-template-columns: 1fr 350px !important;
    gap: 30px !important;
    align-items: start !important;
}

@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── FIX: Sidebar sticky ─── */
.col-sidebar {
    position: sticky !important;
    top: 80px !important;
}

/* ─── FIX: Breadcrumb should NOT overlap banner ─── */
.breadcrumbs {
    background: var(--light-gray, #F5F5F5) !important;
    padding: 12px 0 !important;
    font-size: 0.85rem !important;
    border-bottom: 1px solid var(--border, #E0E0E0) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* ─── FIX: Banner should be below breadcrumbs, not behind ─── */
.single-banner-fullwidth {
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    max-height: 500px !important;
    background: #222 !important;
}

.single-banner-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    max-height: 500px !important;
}

/* ─── FIX: Space before footer ─── */
.single-two-col {
    padding: 30px 0 60px !important;
}

/* ─── FIX: Container must be wide enough for 2 columns ─── */
.single-two-col .container {
    max-width: 1200px !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 auto !important;
}

.single-title-area .container {
    max-width: 1200px !important;
}

/* ─── FIX: Content column min-width ─── */
.col-content {
    min-width: 0 !important;
}

/* ─── FIX: Sidebar card styling ─── */
.sidebar-card {
    background: #F9F9F9 !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 10px !important;
    padding: 22px !important;
    margin-bottom: 20px !important;
}

.sidebar-card h4 {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #E0E0E0 !important;
}

.sidebar-row {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
}

.sidebar-row:last-child {
    border-bottom: none !important;
}

/* ─── FIX: Title area spacing ─── */
.single-title-area {
    padding: 20px 0 14px !important;
    border-bottom: 1px solid #E0E0E0 !important;
}

.single-title-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.single-title-row h1 {
    font-size: 1.7rem !important;
    margin: 0 !important;
}

/* ─── FIX: Heading bar accent (left border) ─── */
.content-heading-bar {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding-left: 14px !important;
    border-left: 4px solid var(--primary, #8B1A1A) !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
}

/* ─── FIX: Banner badge overlay ─── */
.banner-overlay-badge {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    background: #4CAF50 !important;
    color: #fff !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    z-index: 5 !important;
}

/* ─── FIX: Badge inline ─── */
.badge-inline {
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
}

.badge-inline.featured {
    background: #4CAF50 !important;
    color: #fff !important;
}

.badge-inline.verified {
    background: #4CAF50 !important;
    color: #fff !important;
}

/* ─── FIX: WhatsApp and Maps buttons in sidebar ─── */
.btn-whatsapp {
    display: block !important;
    background: #25D366 !important;
    color: #fff !important;
    padding: 10px 16px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-align: center !important;
    font-size: 0.9rem !important;
}

.btn-maps {
    display: block !important;
    background: #fff !important;
    color: #333 !important;
    padding: 10px 16px !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-align: center !important;
    font-size: 0.9rem !important;
}

/* ─── FIX: Meta line ─── */
.single-meta-line {
    margin-top: 6px !important;
    font-size: 0.9rem !important;
    color: #666 !important;
}

.single-meta-line a {
    color: var(--primary, #8B1A1A) !important;
    text-decoration: underline !important;
}


/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX — Gallery Image Popup
   ═══════════════════════════════════════════════════════════════ */

.kovai-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.kovai-lightbox-overlay.active {
    display: flex;
}

.kovai-lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    user-select: none;
}

.kovai-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 100000;
}

.kovai-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.kovai-lightbox-prev,
.kovai-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 100000;
}

.kovai-lightbox-prev { left: 20px; }
.kovai-lightbox-next { right: 20px; }

.kovai-lightbox-prev:hover,
.kovai-lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.kovai-lightbox-counter {
    color: #ccc;
    font-size: 14px;
    margin-top: 12px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
    .kovai-lightbox-prev,
    .kovai-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .kovai-lightbox-prev { left: 10px; }
    .kovai-lightbox-next { right: 10px; }
    .kovai-lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   NEARBY / EXPLORE THIS AREA SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.nearby-section {
    padding: 40px 0;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
}

.nearby-section.nearby-alt {
    background: #FFFFFF;
}

.nearby-heading {
    font-size: 22px;
    color: #1F2937;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.nearby-subtext {
    color: #6B7280;
    font-size: 14px;
    margin: 0 0 25px 0;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nearby-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.nearby-section.nearby-alt .nearby-card {
    background: #F9FAFB;
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.nearby-card-img {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #F3F4F6;
}

.nearby-card-img .nearby-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nearby-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: #F3F4F6;
}

.nearby-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F97316;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.nearby-card-body {
    padding: 14px;
}

.nearby-card-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nearby-cat {
    display: inline-block;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.nearby-rating {
    display: inline-block;
    color: #F59E0B;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.nearby-timing {
    display: block;
    color: #6B7280;
    font-size: 12px;
    margin-bottom: 4px;
}

.nearby-area {
    display: block;
    color: #9CA3AF;
    font-size: 12px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .nearby-heading {
        font-size: 18px;
    }
    .nearby-card-img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .nearby-grid {
        grid-template-columns: 1fr;
    }
    .nearby-section {
        padding: 25px 0;
    }
}


/* ═══════════════════════════════════════════════════════════════
   POST TAGS
   ═══════════════════════════════════════════════════════════════ */

.post-tags-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.tags-label {
    font-weight: 600;
    color: #6B7280;
    font-size: 14px;
}

.post-tag-pill {
    display: inline-block;
    background: #F3F4F6;
    color: #374151;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.post-tag-pill:hover {
    background: #F97316;
    color: #FFFFFF;
    border-color: #F97316;
}


/* ═══════════════════════════════════════════════════════════════
   AUTHOR BOX
   ═══════════════════════════════════════════════════════════════ */

.author-box {
    margin-top: 10px !important;
}

.author-box-inner {
    display: flex;
    gap: 20px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 24px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E5E7EB;
}

.author-info {
    flex: 1;
}

.author-label {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 4px 0 8px 0;
}

.author-bio {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.author-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-posts-link {
    font-size: 13px;
    font-weight: 600;
    color: #F97316;
    text-decoration: none;
}

.author-posts-link:hover {
    text-decoration: underline;
}

.author-website-link {
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
}

.author-website-link:hover {
    color: #F97316;
}

@media (max-width: 600px) {
    .author-box-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .author-meta {
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   4-COLUMN FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
    margin-top: 40px;
}

.footer-top {
    background: #1F2937;
    padding: 50px 0 40px;
}

.footer-top .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr !important;
    gap: 30px !important;
    width: 100%;
}

.footer-col {
    color: #D1D5DB;
    text-align: left;
}

.footer-widget-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #F97316;
    display: inline-block;
}

.footer-widget p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.social-icon:hover {
    background: #F97316;
}

.footer-links,
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li,
.footer-contact li {
    list-style: none !important;
    margin-bottom: 10px;
    padding: 0;
}

.footer-links li::before,
.footer-contact li::before {
    display: none !important;
    content: none !important;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #F97316;
    padding-left: 4px;
}

.footer-contact li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #F97316;
}

/* Bottom Bar */
.footer-bottom {
    background: #111827;
    padding: 18px 0;
    border-top: 1px solid #374151;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: #6B7280;
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #6B7280;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #F97316;
}

/* Also remove bullets from any widget lists inside footer */
.site-footer ul,
.site-footer li {
    list-style: none !important;
    list-style-type: none !important;
}

.site-footer ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 20px !important;
    }
    .footer-top {
        padding: 35px 0 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: #1F2937;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #F97316;
}
