/*
Theme Name: Nagmani Sharma - Stittsville Councillor
Theme URI: https://nagmanisharma.ca
Author: Nagmani Sharma Campaign
Author URI: https://nagmanisharma.ca
Description: A professional campaign theme for Nagmani Sharma's Stittsville Ward 6 Council candidacy. Features volunteer signup, donations, blog, events calendar, platform showcase, gallery, FAQ, and testimonials.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nagmani-councillor
Tags: politics, campaign, community, blog, events, custom-colors, custom-menu, featured-images, threaded-comments
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-blue:   #0B1F5C;   /* deep navy */
    --primary-green:  #2A4BA0;   /* mid-navy blue (replaces green) */
    --accent-orange:  #FF6B00;   /* bright orange accent */
    --accent-red:     #1A3A8F;   /* rich royal blue (replaces red) */
    --hero-start:     #0B1F5C;   /* deep navy */
    --hero-mid:       #1E3A7A;   /* navy blue */
    --hero-end:       #3B5CB8;   /* cornflower blue */
    --dark-gray:      #1A1F36;
    --medium-gray:    #6B7280;
    --light-gray:     #EEF1F8;   /* cool blue-tinted light */
    --white:          #FFFFFF;
    --border:         #D0D8EF;
    --shadow:         0 4px 20px rgba(11,31,92,0.10);
    --shadow-lg:      0 10px 40px rgba(11,31,92,0.16);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

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

a { color: var(--primary-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-orange); }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; }

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--hero-start);
    border-color: var(--accent-orange);
    font-weight: 800;
}
.btn-primary:hover {
    background: #e55f00;
    border-color: #e55f00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.40);
}

.btn-secondary {
    background: var(--hero-end);
    color: var(--white);
    border-color: var(--hero-end);
}
.btn-secondary:hover {
    background: #2a4ba0;
    border-color: #2a4ba0;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-mid) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(11,31,92,0.25);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo { height: 60px; width: auto; }

.site-title {
    font-size: 1.25rem;
    margin: 0;
    color: var(--white);
}
.site-title a { color: var(--white); }
.site-title a:hover { color: var(--accent-orange); }

.site-description {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.main-navigation { display: flex; align-items: center; gap: 0.25rem; }
.main-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 0.25rem; }
.main-navigation a {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: all 0.3s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--accent-orange); background: rgba(255,255,255,0.1); }

.donate-btn {
    background: var(--accent-orange) !important;
    color: var(--hero-start) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    margin-left: 0.5rem;
}
.donate-btn:hover { background: #e55f00 !important; transform: translateY(-1px); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-mid) 50%, var(--hero-end) 100%);
    color: var(--white);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(91,130,210,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* ==========================================================================
   Hero Section (Homepage)
   ========================================================================== */
.hero-section {
    background: linear-gradient(150deg, var(--hero-start) 0%, var(--hero-mid) 45%, var(--hero-end) 100%);
    color: var(--white);
    padding: 4rem 1.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '🍁';
    position: absolute;
    font-size: 22rem;
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(91,130,210,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(58,92,180,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero-title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(11,31,92,0.45);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}
.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

section { padding: 3rem 0; }
section.platform-section { background: var(--light-gray); }
section.volunteer-section { background: linear-gradient(135deg, var(--hero-start), var(--hero-mid), var(--hero-end)); color: var(--white); }
section.volunteer-section .section-title, section.volunteer-section .section-subtitle { color: var(--white); }

/* ==========================================================================
   Platform Cards
   ========================================================================== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-orange);
}
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.platform-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.platform-card h3 { color: var(--primary-blue); font-size: 1.3rem; }
.platform-card h4 { color: var(--primary-blue); font-size: 1.1rem; margin-top: 1.25rem; }
.platform-emphasis { background: var(--light-gray); border-left: 4px solid var(--accent-orange); padding: 1rem 1.25rem; border-radius: 0 8px 8px 0; margin-top: 1.5rem; font-style: italic; }

/* ==========================================================================
   Events
   ========================================================================== */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.event-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.event-date {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}
.event-day { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.event-month { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.event-body { padding: 1.75rem; }
.event-title { color: var(--primary-blue); margin-bottom: 0.75rem; font-size: 1.1rem; }
.event-meta { font-size: 0.9rem; color: var(--medium-gray); margin-bottom: 0.5rem; }

/* ==========================================================================
   Volunteer Form
   ========================================================================== */
.volunteer-form { max-width: 700px; margin: 0 auto; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--dark-gray);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0,51,102,0.1);
}

.submit-btn,
input[type="submit"],
button[type="submit"] {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.submit-btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    background: var(--hero-end);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11,31,92,0.30);
}

.checkbox-group { display: flex; align-items: flex-start; gap: 0.75rem; }
.checkbox-group input[type="checkbox"] { width: auto; margin-top: 0.2rem; }

/* ==========================================================================
   Form rows (page-specific forms)
   ========================================================================== */
.form-row { margin-bottom: 1.5rem; text-align: left; }
.form-row label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--dark-gray); }
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--dark-gray);
    transition: border-color 0.3s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--primary-blue); }

.form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    margin: 0.5rem 0;
}
.checkbox-label input,
.radio-label input { width: auto; }

.form-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section { background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: var(--dark-gray); }
.testimonial-card strong { color: var(--primary-blue); display: block; margin-top: 1rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 1.25rem; overflow: hidden; }
.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-blue);
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s;
    line-height: 1.5;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.35s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}
.faq-question.active::after { transform: rotate(45deg); }
/* JS controls max-height; display always block so scrollHeight works */
.faq-answer {
    display: block;
    padding: 0 2rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
.faq-answer p, .faq-answer ul, .faq-answer ol { margin-bottom: 0.75rem; }
.faq-answer p:last-child, .faq-answer ul:last-child { margin-bottom: 0; }

/* ==========================================================================
   Blog / Archive
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.blog-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 1.75rem; }
.blog-card .entry-title { font-size: 1.2rem; color: var(--primary-blue); margin-bottom: 0.75rem; }
.blog-card .entry-meta { font-size: 0.875rem; color: var(--medium-gray); margin-bottom: 1rem; }
.blog-card .entry-excerpt { color: #4B5563; margin-bottom: 1.25rem; }

/* ==========================================================================
   Single Post / Page
   ========================================================================== */
.content-area { flex: 1; min-width: 0; }
.content-area .entry-header { margin-bottom: 2rem; }
.entry-title { color: var(--primary-blue); }
.entry-meta { color: var(--medium-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
.entry-meta span { margin-right: 1.25rem; }
.entry-thumbnail { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.entry-content h2, .entry-content h3 { color: var(--primary-blue); margin-top: 2rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; }

.share-buttons { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid var(--border); }
.share-buttons a { margin-right: 0.75rem; }

.post-navigation { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--border); }
.post-navigation a { color: var(--primary-blue); font-weight: 600; }

/* ==========================================================================
   Sidebar
   ========================================================================== */
#secondary { width: 300px; flex-shrink: 0; }
.widget { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); padding: 1.75rem; margin-bottom: 2rem; }
.widget-title { color: var(--primary-blue); font-size: 1.1rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--accent-orange); }

/* Two-column layout for single/archive */
.content-area + #secondary { margin-left: 2rem; }
@media (min-width: 900px) {
    .site-main .container > div:has(.content-area) { display: flex; }
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--border); }
.comments-title { color: var(--primary-blue); margin-bottom: 2rem; }
.comment-list { list-style: none; padding: 0; }
.comment { margin-bottom: 1.5rem; padding: 1.5rem; background: var(--light-gray); border-radius: 12px; }
.comment-author b { color: var(--primary-blue); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--dark-gray);
    color: rgba(255,255,255,0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
}

.footer-section h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 1.25rem; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-section a:hover { color: var(--accent-orange); }
.footer-section p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid rgba(255,255,255,0.25);
}
.social-link:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent-orange); }
.canadian-pride { color: var(--accent-red); }

/* Footer Search — defined late in cascade to override all previous rules */
.footer-search-form { margin-top: 0.5rem; }

/* ==========================================================================
   Page-specific: About
   ========================================================================== */
.about-content { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
.about-hero-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-photo img { border-radius: 20px; width: 100%; box-shadow: var(--shadow-lg); }

.credentials-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.credential-card, .value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}
.credential-card:hover, .value-card:hover { transform: translateY(-5px); }
.credential-icon, .value-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.credential-card h3, .value-card h3 { color: var(--primary-blue); font-size: 1.1rem; }

/* ==========================================================================
   Page-specific: Gallery
   ========================================================================== */
.gallery-content { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; }
.gallery-intro { text-align: center; margin-bottom: 4rem; }
.intro-text { font-size: 1.2rem; max-width: 800px; margin: 0 auto 2rem; line-height: 1.8; }

.filter-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.photo-card { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-card.hidden { display: none; }
.photo-container { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.photo-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-card:hover .photo-container img { transform: scale(1.08); }
.photo-info { padding: 1.25rem; background: var(--white); }
.photo-info p { font-weight: 600; margin-bottom: 0.25rem; }
.photo-info small { color: var(--medium-gray); }

.gallery-stats { background: var(--light-gray); padding: 4rem 2rem; border-radius: 20px; margin: 4rem 0; text-align: center; }
.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; }
.stat-item { background: var(--white); padding: 2rem 2.5rem; border-radius: 14px; box-shadow: var(--shadow); min-width: 160px; text-align: center; }
.stat-item strong { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-item span { color: var(--medium-gray); font-weight: 600; }

/* ==========================================================================
   Page-specific: Platform
   ========================================================================== */
.platform-content { max-width: 1000px; margin: 0 auto; padding: 4rem 1.5rem; }
.platform-topic-block { margin-bottom: 4rem; padding: 2.5rem; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); }
.platform-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 3px solid var(--accent-orange); }
.platform-header h2 { color: var(--primary-blue); margin: 0; font-size: 1.6rem; }

.challenge-box { background: #FEF3C7; border-left: 5px solid var(--accent-orange); padding: 1.75rem; border-radius: 0 12px 12px 0; margin-bottom: 1.75rem; }
.solution-box  { background: #DBEAFE; border-left: 5px solid var(--primary-blue); padding: 1.75rem; border-radius: 0 12px 12px 0; margin-bottom: 1.75rem; }
.commitment-box { background: #D1FAE5; border-left: 5px solid var(--primary-green); padding: 1.75rem; border-radius: 0 12px 12px 0; text-align: center; }
.challenge-box h3 { color: #92400E; }
.solution-box h3 { color: #1E3A8A; }
.commitment-box p { font-style: italic; font-size: 1.1rem; margin: 0; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }

.accountability-section { background: var(--light-gray); padding: 2.5rem; border-radius: 16px; margin-bottom: 3rem; }
.accountability-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.accountability-list li { padding: 0.85rem 1.25rem; background: var(--white); border-radius: 8px; margin-bottom: 0.75rem; }

.cta-section { text-align: center; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ==========================================================================
   Page-specific: Donate
   ========================================================================== */
.donate-content { max-width: 1000px; margin: 0 auto; padding: 4rem 1.5rem; }
.donate-intro { text-align: center; margin-bottom: 4rem; }

.spending-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.spending-card { background: var(--white); padding: 2rem; border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.spending-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.spending-card h4 { color: var(--primary-blue); }

.legal-info { background: #FEF3C7; padding: 2.5rem; border-radius: 14px; margin: 3rem 0; }
.legal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.legal-item { background: var(--white); padding: 1.25rem; border-radius: 10px; }
.legal-note { color: #92400E; font-size: 0.9rem; margin-top: 1.25rem; }

.donation-form-section { background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); color: var(--white); padding: 4rem 2.5rem; border-radius: 20px; margin: 4rem 0; text-align: center; }
.donation-form-section h2, .donation-form-section h3 { color: var(--white); }

.amount-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.amount-btn { padding: 0.85rem 1.75rem; font-size: 1.1rem; font-weight: 700; background: var(--white); color: var(--primary-blue); border: 3px solid var(--white); border-radius: 10px; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.amount-btn:hover, .amount-btn.active { background: var(--accent-orange); color: var(--white); border-color: var(--accent-orange); transform: translateY(-2px); }

.form-container { max-width: 680px; margin: 2.5rem auto; background: var(--white); padding: 2.5rem; border-radius: 16px; color: var(--dark-gray); }

.payment-options { background: var(--light-gray); padding: 1.75rem; border-radius: 10px; margin: 1.5rem 0; }

.cant-donate { text-align: center; margin: 4rem 0; }
.alternative-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.action-card { background: var(--white); padding: 2.5rem 1.75rem; border-radius: 16px; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: all 0.3s; text-align: center; }
.action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: inherit; }
.action-icon { font-size: 3rem; margin-bottom: 1.25rem; display: block; }
.action-card h4 { color: var(--primary-blue); }

.transparency-section { background: var(--light-gray); padding: 2.5rem; border-radius: 16px; }
.transparency-info ul { margin-top: 1rem; }
.transparency-info li { margin-bottom: 0.75rem; }

/* ==========================================================================
   Page-specific: Volunteer
   ========================================================================== */
.volunteer-content { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; }
.volunteer-intro { text-align: center; margin-bottom: 4rem; }

.opportunities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2.5rem 0; }
.opportunity-card { background: var(--white); padding: 2.25rem; border-radius: 18px; box-shadow: var(--shadow); text-align: center; transition: all 0.3s; }
.opportunity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.opp-icon { font-size: 3rem; margin-bottom: 1.25rem; display: block; }
.opportunity-card h3 { color: var(--primary-blue); font-size: 1.15rem; }
.opp-details { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 2px solid var(--light-gray); font-size: 0.9rem; text-align: left; line-height: 1.8; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.benefit-item { background: var(--light-gray); padding: 1.25rem 1.5rem; border-radius: 10px; font-weight: 600; }

.volunteer-form-section { background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); color: var(--white); padding: 4rem 2rem; border-radius: 20px; margin: 4rem 0; text-align: center; }
.volunteer-form-section h2 { color: var(--white); }

/* ==========================================================================
   Page-specific: Concerns
   ========================================================================== */
.concerns-content { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
.concerns-intro { text-align: center; margin-bottom: 4rem; }

.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 2.5rem 0; }
.promise-card { background: var(--white); padding: 2rem; border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.promise-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.promise-card h4 { color: var(--primary-blue); }

.concern-form-section { background: linear-gradient(135deg, var(--primary-green), var(--primary-blue)); color: var(--white); padding: 4rem 2rem; border-radius: 20px; margin: 4rem 0; text-align: center; }
.concern-form-section h2 { color: var(--white); }

.steps-timeline { max-width: 700px; margin: 2.5rem auto; }
.step { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.step-number { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent-orange), var(--accent-red)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.step-content h4 { color: var(--primary-blue); margin-bottom: 0.25rem; }

.concerns-list { margin: 2.5rem 0; }
.concern-item { background: var(--white); padding: 2rem; margin-bottom: 1.5rem; border-radius: 14px; box-shadow: var(--shadow); border-left: 5px solid var(--accent-orange); transition: all 0.3s; }
.concern-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.concern-category { display: inline-block; background: var(--light-gray); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.concern-action { background: #DBEAFE; padding: 1.25rem; border-radius: 8px; border-left: 3px solid var(--primary-blue); margin-top: 1rem; }
.concern-action strong { color: var(--primary-blue); }
.concern-desc { color: var(--medium-gray); }

.stats-section { background: var(--light-gray); padding: 4rem 2rem; border-radius: 20px; margin: 4rem 0; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.stat-card { background: var(--white); padding: 2.5rem 1.5rem; border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.75rem; display: block; }
.stat-label { font-size: 1rem; color: var(--medium-gray); font-weight: 600; }

/* ==========================================================================
   Page-specific: FAQ
   ========================================================================== */
.faq-content { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
.faq-category { margin-bottom: 3.5rem; }
.faq-category-title { color: var(--primary-blue); font-size: 1.4rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 3px solid var(--accent-orange); display: flex; align-items: center; gap: 0.75rem; }

/* ==========================================================================
   Page-specific: Testimonials
   ========================================================================== */
.testimonials-content { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; }
.testimonials-hero { text-align: center; margin-bottom: 4rem; }
.testimonials-grid-section { margin-bottom: 4rem; }

.featured-testimonial {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
}
.featured-testimonial cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 1rem; opacity: 0.9; }

/* ==========================================================================
   Pagination
   ========================================================================== */
.nav-links { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.page-numbers { padding: 0.6rem 1rem; border-radius: 8px; border: 2px solid var(--border); color: var(--primary-blue); font-weight: 600; }
.page-numbers.current { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }
.page-numbers:hover { background: var(--light-gray); }

/* ==========================================================================
   Accessibility & Utilities
   ========================================================================== */
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.skip-link { display: block; padding: 1rem 1.5rem; background: var(--accent-red); color: var(--white); position: absolute; top: -100px; left: 1rem; border-radius: 0 0 8px 8px; font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .about-hero-section { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
    .platform-header { flex-direction: column; text-align: center; }
    #secondary { width: 100%; margin-left: 0 !important; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    .main-navigation.active { display: flex; }
    .main-navigation ul { flex-direction: column; width: 100%; }
    .main-navigation a { display: block; padding: 0.75rem 1rem; }
    .site-header { position: relative; }

    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
    .photo-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; }
    .step { flex-direction: column; align-items: center; text-align: center; }
    .form-row-group { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .spending-grid, .legal-grid, .alternative-actions { grid-template-columns: 1fr; }
    .amount-buttons { flex-direction: column; align-items: center; }
    .amount-btn { width: 100%; max-width: 250px; }
    .opportunities-grid, .benefits-grid, .promise-grid { grid-template-columns: 1fr; }
    section { padding: 2rem 0; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .page-hero { padding: 2rem 1rem; }
    .hero-section { padding: 2rem 1rem 1.75rem; }
    .form-container, .platform-topic-block { padding: 1.25rem 1rem; }

    /* Squash all the big block margins/paddings on mobile */
    .about-hero-section { margin-bottom: 2rem; gap: 1.5rem; }
    .gallery-intro,
    .volunteer-intro,
    .donate-intro,
    .testimonials-hero,
    .testimonials-grid-section,
    .concerns-intro { margin-bottom: 1.5rem; }
    .platform-topic-block { margin-bottom: 1.5rem; }
    .gallery-stats,
    .donation-form-section,
    .volunteer-form-section,
    .concern-form-section,
    .stats-section,
    .cant-donate { margin: 1.5rem 0; padding: 2rem 1rem; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    section { padding: 1.5rem 0; }
}

/* ==========================================================================
   PROFESSIONAL POLITICAL CAMPAIGN ENHANCEMENTS v2
   ========================================================================== */

/* ── Election-grade Header Upgrade ──────────────────────────────────────────── */
.site-header {
    background: linear-gradient(135deg, #050f2e 0%, #0B1F5C 60%, #1a3270 100%) !important;
    border-bottom: 3px solid #FF6B00;
}

/* Logo sizing */
.custom-logo { height: 68px !important; width: auto !important; object-fit: contain; }

/* Nav hover underline accent */
.main-navigation a {
    position: relative;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; right: 50%;
    height: 2px;
    background: #FF6B00;
    transition: left 0.25s, right 0.25s;
}
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after { left: 0.85rem; right: 0.85rem; }

/* ── Page Hero Upgrade ───────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #050f2e 0%, #0B1F5C 50%, #1E3A7A 100%);
    padding: 5.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 40%, rgba(255,107,0,0.12) 0%, transparent 65%),
                radial-gradient(ellipse at 20% 70%, rgba(91,130,210,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.page-hero h1 { letter-spacing: 0.08em; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { font-size: 1.2rem; opacity: 0.88; max-width: 600px; margin: 0 auto; }

/* ── Section Dividers ────────────────────────────────────────────────────── */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 4px;
    background: #FF6B00;
    border-radius: 2px;
}

/* ── Platform Cards Upgrade ──────────────────────────────────────────────── */
.platform-card {
    border: 1px solid #e8edf5;
    border-top: 4px solid #FF6B00;
    border-radius: 16px;
    padding: 2.5rem;
    background: white;
    box-shadow: 0 4px 20px rgba(11,31,92,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11,31,92,0.14);
}

/* ── Volunteer / Concerns Forms Upgrade ──────────────────────────────────── */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(11,31,92,0.12);
    border: 1px solid #e8edf5;
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid #D0D8EF;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0B1F5C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(11,31,92,0.1);
}
.submit-btn {
    background: linear-gradient(135deg, #FF6B00, #e55f00) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 2.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 4px 16px rgba(255,107,0,0.35) !important;
    transition: all 0.25s !important;
}
.submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255,107,0,0.45) !important;
}

/* ── Footer Upgrade ──────────────────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(180deg, #050f2e 0%, #0B1F5C 100%);
    border-top: 4px solid #FF6B00;
}
.footer-content { gap: 3rem; }
.footer-section h3 {
    color: #FF6B00;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-section a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-section a:hover { color: #FF6B00; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }

/* Social links */
.social-link {
    width: 38px; height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75) !important;
    transition: all 0.2s;
}
.social-link:hover {
    background: #FF6B00 !important;
    border-color: #FF6B00 !important;
    color: white !important;
    transform: translateY(-2px);
}
.social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }

/* Floating News FAB removed — ticker bar "All News →" button replaces it */

/* ── Stat counters (homepage) ────────────────────────────────────────────── */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FF6B00, #e55f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(11,31,92,0.08);
    border-left: 4px solid #FF6B00;
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card blockquote { font-style: italic; font-size: 1.05rem; line-height: 1.7; color: #374151; }
.testimonial-card cite { font-weight: 700; color: #0B1F5C; font-style: normal; }

/* ── Single Post / Event Upgrade ────────────────────────────────────────── */
.single .entry-header { margin-bottom: 2rem; }
.single .entry-title { color: #0B1F5C; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.entry-meta { color: #6B7280; font-size: 0.9rem; margin-bottom: 1.5rem; }
.entry-content { max-width: 800px; }
.entry-content p { font-size: 1.05rem; line-height: 1.85; }
.entry-content h2, .entry-content h3 { color: #0B1F5C; margin-top: 2rem; }

/* ── Scroll Reveal Animations ────────────────────────────────────────────── */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-scroll.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Mobile Responsive Tweaks ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .platform-card { padding: 1.75rem; }
    .form-container { padding: 1.5rem; }
    .page-hero { padding: 3.5rem 1.25rem; }
    .site-header { border-bottom-width: 2px; }
}

/* ── Accessibility: Focus Styles ─────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #FF6B00;
    outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   NEWS TICKER: HIDE ALL SCROLLING SNIPPETS
   Hides news-bar-track, items, tags, titles, dates completely.
   Only the label and CTA button remain visible.
   ═══════════════════════════════════════════════════════════════ */
.news-bar-track-wrap,
.news-bar-track,
.news-bar-item,
.news-bar-tag,
.news-bar-title,
.news-bar-date {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Also kill floating FAB from any source */
#nagmani-news-fab,
.nagmani-news-fab,
.fab-icon,
.fab-label,
.fab-badge {
    display: none !important;
}


/* ── Footer Search Box — White Input (added last for highest cascade priority) ─ */
.footer-search-wrap {
    display: flex !important;
    align-items: stretch !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.footer-search-wrap:focus-within {
    border-color: #FF6B00 !important;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.25) !important;
}
.footer-search-input {
    flex: 1 !important;
    background: #ffffff !important;
    border: none !important;
    outline: none !important;
    color: #1A1F36 !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    min-width: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.footer-search-input::placeholder {
    color: #9CA3AF !important;
    opacity: 1 !important;
}
.footer-search-input::-webkit-search-decoration,
.footer-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.footer-search-btn {
    background: #FF6B00 !important;
    border: none !important;
    color: #fff !important;
    padding: 0 1rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s;
    flex-shrink: 0 !important;
    min-width: 44px !important;
}
.footer-search-btn:hover { background: #c45a00 !important; }

/* ═══════════════════════════════════════════════════════
   REMOVE NEWS BAR COMPLETELY — added last for highest priority
   ═══════════════════════════════════════════════════════ */
#nagmani-news-bar,
.nagmani-news-bar,
.news-bar-label,
.news-bar-cta,
.news-bar-close,
.news-bar-track-wrap,
.news-bar-track,
.news-bar-item,
.news-bar-tag,
.news-bar-title,
.news-bar-date,
#nagmani-news-fab,
.nagmani-news-fab,
.fab-icon,
.fab-label,
.fab-badge {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
