/*
Theme Name: LICJob Coimbatore Pro
Theme URI: https://licjob.co.in
Author: BRUsoft
Author URI: https://brusoft.in
Description: Custom WordPress theme for Mrs. Amutha K, Development Officer — LIC Agent Recruitment in Coimbatore District. SEO & AI SEO optimized with comprehensive schema markup, modern responsive design, WhatsApp CTA integration, and structured data for enhanced search visibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: licjob
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, responsive-layout
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* LIC Brand Colors */
    --lic-blue: #003B73;
    --lic-blue-light: #0A5EB0;
    --lic-blue-dark: #002147;
    --lic-gold: #D4A843;
    --lic-gold-light: #F0D078;
    --lic-gold-dark: #B8922E;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FB;
    --gray-50: #F1F3F5;
    --gray-100: #E5E8EB;
    --gray-200: #CED4DA;
    --gray-400: #868E96;
    --gray-600: #495057;
    --gray-800: #212529;
    --black: #0D0D0D;

    /* Accent */
    --accent-green: #28A745;
    --whatsapp-green: #25D366;
    --accent-red: #DC3545;

    /* Typography */
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-pad: clamp(3rem, 6vw, 6rem);
    --container-max: 1200px;
    --container-pad: clamp(1rem, 3vw, 2rem);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-base: 0.3s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 59, 115, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 59, 115, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 59, 115, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 59, 115, 0.16);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--lic-blue-light);
    text-decoration: none;
    transition: color var(--transition-base);
}
a:hover { color: var(--lic-gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--lic-blue-dark);
}

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

p { margin-bottom: 1rem; }

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lic-gold-dark);
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(212, 168, 67, 0.06));
    padding: 0.35em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 680px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8em 1.8em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--lic-blue);
    color: var(--white);
    border-color: var(--lic-blue);
}
.btn-primary:hover {
    background: var(--lic-blue-light);
    border-color: var(--lic-blue-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: linear-gradient(135deg, var(--lic-gold), var(--lic-gold-dark));
    color: var(--white);
    border-color: var(--lic-gold);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--lic-gold-light), var(--lic-gold));
    color: var(--lic-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    border-color: var(--whatsapp-green);
    font-size: 1rem;
}
.btn-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--lic-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
}
.top-bar a:hover { color: var(--lic-gold-light); }

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-branding img {
    height: 48px;
    width: auto;
}

.site-branding__text {
    line-height: 1.2;
}

.site-branding__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--lic-blue-dark);
}

.site-branding__tagline {
    font-size: 0.72rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 0.6em 1em;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    position: relative;
    transition: color var(--transition-base);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1em;
    right: 1em;
    height: 2px;
    background: var(--lic-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
    color: var(--lic-blue);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after,
.main-nav .current_page_item a::after {
    transform: scaleX(1);
}

.header-cta {
    flex-shrink: 0;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--lic-blue-dark);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 960px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .main-nav.is-open { display: block; }
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    .main-nav a {
        padding: 0.8em var(--container-pad);
        font-size: 1rem;
    }
    .main-nav a::after { display: none; }
    .header-cta { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--lic-blue-dark) 0%, var(--lic-blue) 50%, var(--lic-blue-light) 100%);
    color: var(--white);
    padding: clamp(4rem, 10vw, 8rem) 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--lic-gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero__title span {
    color: var(--lic-gold-light);
}

.hero__desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__visual {
    position: relative;
    animation: fadeSlideUp 0.8s 0.2s var(--ease-out) both;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--lic-gold-light);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.3em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__image-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.hero__image-card img {
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hero__image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__desc { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__visual { order: -1; }
}

/* ============================================================
   WHY LIC SECTION
   ============================================================ */
.why-lic {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.why-lic__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lic-blue), var(--lic-gold));
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 59, 115, 0.08), rgba(0, 59, 115, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--lic-blue);
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.benefit-card__link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    color: var(--lic-blue);
}
.benefit-card__link:hover {
    color: var(--lic-gold-dark);
    gap: 0.6em;
}

/* ============================================================
   ELIGIBILITY SECTION
   ============================================================ */
.eligibility {
    padding: var(--section-pad) 0;
}

.eligibility__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.eligibility__requirements {
    background: linear-gradient(135deg, var(--lic-blue-dark), var(--lic-blue));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.eligibility__requirements h3 {
    color: var(--lic-gold-light);
    margin-bottom: 1.5rem;
}

.eligibility__req-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.eligibility__req-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--lic-gold-light);
    margin-top: 0.2em;
}

.eligibility__list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.eligibility__list li {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.eligibility__list li:hover {
    background: rgba(0, 59, 115, 0.06);
    transform: translateX(4px);
}

.eligibility__list svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
}

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

/* ============================================================
   RENEWAL COMMISSION HIGHLIGHT
   ============================================================ */
.highlight-banner {
    background: linear-gradient(135deg, var(--lic-gold-dark), var(--lic-gold), var(--lic-gold-light));
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.highlight-banner .container {
    position: relative;
    z-index: 2;
}

.highlight-banner__text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    color: var(--lic-blue-dark);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.35;
}

/* ============================================================
   GETTING STARTED
   ============================================================ */
.getting-started {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.getting-started__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.step-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.step-card:hover .step-card__image img {
    transform: scale(1.05);
}

.step-card__body {
    padding: 1.5rem;
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--lic-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-card h3 a {
    color: var(--lic-blue-dark);
}
.step-card h3 a:hover { color: var(--lic-blue-light); }

.step-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================================
   ABOUT / CONTACT CTA
   ============================================================ */
.contact-cta {
    padding: var(--section-pad) 0;
}

.contact-cta__card {
    background: linear-gradient(135deg, var(--lic-blue-dark), var(--lic-blue));
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-cta__card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.08);
    pointer-events: none;
}

.contact-cta__info h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-cta__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--lic-gold-light);
    margin-bottom: 1rem;
}

.contact-cta__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-cta__details a {
    color: rgba(255, 255, 255, 0.9);
}
.contact-cta__details a:hover { color: var(--lic-gold-light); }

.contact-cta__details svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-cta__detail-item {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.contact-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .contact-cta__card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-cta__actions {
        align-items: center;
    }
    .contact-cta__details {
        align-items: center;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--lic-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--lic-gold);
    margin-top: 0.5rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li { margin-bottom: 0.5rem; }

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}
.footer-nav a:hover {
    color: var(--lic-gold-light);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 0.2em;
    color: var(--lic-gold);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
}
.footer-contact-item a:hover { color: var(--lic-gold-light); }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover { color: var(--lic-gold-light); }

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        margin: 0.5rem auto 0;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.archive-header {
    background: linear-gradient(135deg, var(--lic-blue-dark), var(--lic-blue));
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.archive-header h1 {
    color: var(--white);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: var(--section-pad) 0;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

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

.post-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.post-card:hover .post-card__thumb img {
    transform: scale(1.05);
}

.post-card__body {
    padding: 1.5rem;
}

.post-card__meta {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.post-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.post-card h2 a {
    color: var(--lic-blue-dark);
}
.post-card h2 a:hover { color: var(--lic-blue-light); }

.post-card__excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */
.single-header {
    background: linear-gradient(135deg, var(--lic-blue-dark), var(--lic-blue));
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.single-header h1 { color: var(--white); }

.single-content {
    padding: var(--section-pad) 0;
    max-width: 800px;
    margin: 0 auto;
}

.single-content h2 {
    margin: 2rem 0 1rem;
}

.single-content h3 {
    margin: 1.5rem 0 0.75rem;
}

.single-content img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.single-content blockquote {
    border-left: 4px solid var(--lic-gold);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Sidebar */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: var(--section-pad) 0;
}

.sidebar .widget {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar .widget-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lic-gold);
}

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

/* ============================================================
   CONTACT FORM (CF7 compatible)
   ============================================================ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base);
    background: var(--white);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--lic-blue);
    box-shadow: 0 0 0 3px rgba(0, 59, 115, 0.1);
}

.wpcf7 input[type="submit"] {
    background: var(--lic-blue);
    color: var(--white);
    border: 2px solid var(--lic-blue);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.wpcf7 input[type="submit"]:hover {
    background: var(--lic-blue-light);
    border-color: var(--lic-blue-light);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .top-bar, .site-header, .whatsapp-float, .site-footer { display: none; }
    body { font-size: 12pt; color: #000; }
}
