@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1B3A5C;
    --primary-light: #122840;
    --accent: #DC2626;
    --accent-dark: #B91C1C;
    --accent-light: #FF6B6B;
    --gold: #1B3A5C;
    --gold-light: #264D75;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --text-dark: #1A1A2E;
    --text-gray: #6B7280;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border: #D8E2EE;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 90px;
}
@media (max-width: 640px) {
    body { padding-top: 70px; }
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Header & Navigation */
.header {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: var(--accent);
    background: linear-gradient(120deg, var(--accent), #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-form p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.price-display {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.price-display .label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.price-display .price {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

/* Trust Indicators */
.trust-bar {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.trust-text strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
}


.service-card { border-left: 4px solid var(--gold); }
.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #FF6B6B);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.service-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-gray);
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 2rem;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #FF6B6B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-us {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.75rem;
}

.why-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent);
    pointer-events: none;
}

/* ── Pricing Table ── */
.pricing-table-wrap {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    overflow: hidden;
}

.pricing-table thead th {
    background: rgba(255,255,255,0.12);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}

.pricing-table tbody tr {
    transition: all 0.25s;
}

.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.1);
}

.pricing-table tbody tr.featured-row {
    background: rgba(255,255,255,0.12);
}

.pricing-table tbody td {
    padding: 1.1rem 1.5rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    vertical-align: middle;
}

.pricing-table .price-cell {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    white-space: nowrap;
}

.btn-table {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-table:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Pricing extras (Express + Corporate) */
.pricing-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-extra-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.pricing-extra-card .extra-icon {
    font-size: 1.5rem;
}

.pricing-extra-card strong {
    color: white;
    font-size: 1.05rem;
}

.pricing-extra-card .extra-price {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 0.4rem;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-extra-card p {
    width: 100%;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--accent), #FF6B6B);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.btn-light {
    background: white;
    color: var(--accent);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-contact a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-column h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE: TABLET (max-width: 968px) ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero-form {
        padding: 2rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-extras {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .trust-container {
        justify-content: center;
    }
}

/* ===== RESPONSIVE: MOBILE (max-width: 640px) ===== */
@media (max-width: 640px) {
    /* Prevent any horizontal overflow on mobile Firefox */
    .hero, .services, .process, .about-section, .trust-bar,
    .testimonials, .faq-section, .footer, section, .pricing,
    .contact-section, .blog-main, .legal-page, .page-header {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-form {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .hero-form h3 {
        font-size: 1.35rem;
    }
    
    .hero-form p {
        font-size: 0.85rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.35rem;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .trust-bar {
        padding: 1rem;
    }
    
    .trust-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .trust-item {
        width: 100%;
    }
    
    .services {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.65rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.75rem;
        border-radius: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    .process {
        padding: 3rem 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-us {
        padding: 3rem 1rem;
    }
    
    .why-item {
        gap: 1rem;
    }
    
    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        min-width: 48px;
    }
    
    .why-content h3 {
        font-size: 1.15rem;
    }
    
    .pricing {
        padding: 3rem 1rem;
    }
    
    /* Pricing table mobile — stack cells */
    .pricing-table thead {
        display: none;
    }
    .pricing-table tbody tr {
        display: block;
        background: rgba(255,255,255,0.06);
        border-radius: 0.75rem;
        margin-bottom: 0.75rem;
        padding: 1rem;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .pricing-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .pricing-table tbody td:last-child {
        border-bottom: none;
        justify-content: flex-end;
        padding-top: 0.75rem;
    }
    .pricing-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: rgba(255,255,255,0.6);
        font-size: 0.8rem;
        text-transform: uppercase;
    }
    .pricing-extras {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.65rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand h3 {
        font-size: 1.35rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    /* General button sizing on mobile */
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .price-display .price {
        font-size: 1.65rem;
    }
    
    /* Cookie banner mobile */
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Schema.org structured data for SEO */

/* ===== CONTACT PAGE STYLES ===== */
.contact-container {
    max-width: 1280px;
    margin: -3rem auto 0;
    padding: 0 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #FF6B6B);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.info-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
}

.info-content a:hover {
    text-decoration: underline;
}

.business-hours {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.business-hours h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
}

.hours-item strong {
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-form .subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background: var(--success);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.badge {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

.footer {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer p {
    opacity: 0.7;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 4rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 3rem 1rem 2rem;
    }
    
    .page-header h1 {
        font-size: 1.65rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-container {
        margin-top: -2rem;
        padding: 0 0.75rem 3rem;
        gap: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-icon {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content a {
        font-size: 1rem;
    }
    
    .business-hours {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .badge {
        padding: 0.75rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .checkbox-item {
        align-items: flex-start;
    }
    
    .checkbox-item input[type="checkbox"] {
        margin-top: 0.15rem;
        flex-shrink: 0;
    }
    
    .checkbox-item label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* ===== FAQ PAGE STYLES ===== */
.faq-container {
    max-width: 1100px;
    margin: -2rem auto 0;
    padding: 0 2rem 6rem;
    position: relative;
    z-index: 1;
}

.faq-search {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.search-box {
    display: flex;
    gap: 1rem;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-box button {
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: var(--accent-dark);
}

.search-results {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Autocomplete dropdown */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    left: 2rem;
    right: 2rem;
    background: white;
    border: 2px solid var(--border);
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    line-height: 1.5;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.autocomplete-item strong {
    color: var(--accent);
    font-weight: 700;
}

.faq-result-count {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-chip {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.category-chip:hover,
.category-chip.active {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cat-chip {
    padding: 0.6rem 1.25rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.cat-chip:hover,
.cat-chip.active {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}

.faq-stats {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.faq-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #FF6B6B);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    flex-grow: 1;
}

.section-count {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.faq-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question,
.faq-q {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
}

.faq-question:hover,
.faq-q:hover {
    color: var(--accent);
}

.faq-icon,
.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* .faq-a uses jQuery slideToggle instead of max-height */
.faq-a {
    display: none;
    padding: 0 2rem 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 2000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p,
.faq-a p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol,
.faq-a ul,
.faq-a ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.faq-answer li,
.faq-a li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.highlight-box strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #FFF3CD;
    border-left: 4px solid var(--warning);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: 0.5rem;
}

.danger-box {
    background: #FFE5E5;
    border-left: 4px solid var(--danger);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.danger-box strong {
    color: var(--danger);
    display: block;
    margin-bottom: 0.5rem;
}

.success-box {
    background: #D1FAE5;
    border-left: 4px solid var(--success);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.success-box strong {
    color: #065F46;
    display: block;
    margin-bottom: 0.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.price-table th,
.price-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.price-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.price-table .price {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--accent);
}

.cta-box {
    background: linear-gradient(135deg, var(--accent), #FF6B6B);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-box h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--accent);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.footer {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer p {
    opacity: 0.7;
}

.footer a {
    color: white;
    text-decoration: underline;
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .faq-categories {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 3rem 1rem 2rem;
    }
    
    .page-header h1 {
        font-size: 1.55rem;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .faq-container {
        padding: 0 0.75rem 4rem;
        margin-top: -1.5rem;
    }
    
    .faq-search {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }
    
    .search-box input {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    
    .search-box button {
        padding: 0.85rem 1.5rem;
    }
    
    .faq-stats {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .faq-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .cat-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .cat-chip {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .section-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-count {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
    
    .faq-item {
        border-radius: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        min-width: 24px;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        margin-left: 1rem;
    }
    
    .faq-answer li {
        font-size: 0.9rem;
    }
    
    .highlight-box,
    .warning-box,
    .danger-box,
    .success-box {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .price-table {
        font-size: 0.85rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.25rem;
        border-radius: 1rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

/* ===== WORDPRESS MOBILE MENU ===== */
.nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.97);
    padding: 5rem 2rem 2rem;
    z-index: 998;
    gap: 0;
    align-items: flex-start;
    overflow-y: auto;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity:0; transform:translateY(-10px); }
    to { opacity:1; transform:translateY(0); }
}
.nav-links.open li { width:100%; border-bottom:1px solid rgba(255,255,255,0.1); list-style:none; }
.nav-links.open li:last-child { border-bottom:none; }
.nav-links.open li a { display:block; padding:1.1rem 0; color:white !important; font-size:1.15rem; text-decoration:none; }
.nav-links.open .nav-cta { background:var(--accent)!important; padding:0.8rem 1.5rem!important; border-radius:0.5rem; display:inline-block!important; margin-top:0.5rem; }
.mobile-close-btn {
    display: none; position: fixed; top:1.2rem; right:1.2rem; z-index:999;
    background:rgba(255,255,255,0.15); border:none; color:white; width:40px; height:40px;
    border-radius:50%; font-size:1.4rem; cursor:pointer; align-items:center; justify-content:center;
}
body.nav-open .mobile-close-btn { display:flex; }
body.nav-open { overflow: hidden; }
.mobile-menu.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.mobile-menu.active span:nth-child(2) { opacity:0; }
.mobile-menu.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* WordPress menu item resets */
.nav-links li { list-style:none; }
.nav-links > li > a { text-decoration:none; color:var(--text-dark); font-weight:500; transition:color 0.3s; font-size:0.95rem; }
.nav-links > li > a:hover { color:var(--accent); }
.nav-links .nav-cta, .nav-links li:last-child > a {
    background:var(--accent); color:white!important; padding:0.75rem 1.5rem;
    border-radius:0.5rem; font-weight:600; transition:all 0.3s;
}
.nav-links .nav-cta:hover, .nav-links li:last-child > a:hover {
    background:var(--accent-dark); transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(59,130,246,0.4);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position:fixed; bottom:0; left:0; right:0;
    background:#fff; border-top:3px solid var(--accent);
    box-shadow:0 -8px 30px rgba(0,0,0,0.12);
    z-index:9999; padding:1.25rem 2rem;
    display:none;
}
.cookie-banner.visible { display:block; }
.cookie-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; gap:2rem; flex-wrap:wrap; }
.cookie-text { flex:1; min-width:260px; font-size:0.9rem; }
.cookie-text strong { display:block; margin-bottom:0.2rem; }
.cookie-text a { color:var(--accent); }
.cookie-actions { display:flex; gap:0.75rem; }
.cookie-btn { padding:0.65rem 1.25rem; border-radius:0.5rem; font-weight:600; font-size:0.875rem; cursor:pointer; border:2px solid transparent; font-family:inherit; transition:all 0.2s; }
.cookie-btn-accept { background:var(--accent); color:#fff; border-color:var(--accent); }
.cookie-btn-reject { background:transparent; color:var(--text-dark); border-color:var(--border); }
.cookie-btn-reject:hover { border-color:#94a3b8; }

/* ===== FLOATING WHATSAPP & PHONE ===== */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #1EBE57;
}

/* Pulse animation on WhatsApp */
.floating-whatsapp::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: floatingPulse 2.5s ease-out infinite;
}

@keyframes floatingPulse {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 640px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp::after {
        width: 50px;
        height: 50px;
    }
}

/* ===== PAGE HEADER (shared by FAQ, Contact, Terms, Single) ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Single article meta */
.single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.single-cat {
    background: var(--gold);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.65rem;
    border-radius: 0.2rem;
}

.single-reading {
    background: rgba(255,255,255,0.15);
    padding: 0.15rem 0.6rem;
    border-radius: 0.25rem;
}

/* ===== SINGLE POST ARTICLE ===== */
.single-layout {
    max-width: 1280px;
    margin: -1.5rem auto 0;
    padding: 0 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.single-post {
    min-width: 0;
}

.single-post-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    max-height: 450px;
}

.single-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-post-content {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    line-height: 1.85;
    color: var(--text-gray);
    font-size: 1.02rem;
}

.single-post-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.single-post-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 0.6rem;
}

.single-post-content p {
    margin-bottom: 1rem;
}

.single-post-content a {
    color: var(--accent);
    text-decoration: underline;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.single-post-content ul,
.single-post-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

.single-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}

.single-post-content table th,
.single-post-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.single-post-content table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary);
}

.single-post-content table tr:hover td {
    background: rgba(27,154,170,0.04);
}

.single-post-content hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 2rem 0;
}

/* Post navigation */
.single-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.post-nav-link {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.post-nav-link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.post-nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.post-nav-title {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Single post CTA */
.single-post-cta {
    background: var(--primary);
    color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-top: 2.5rem;
    text-align: center;
}

.single-post-cta h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.single-post-cta p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 968px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .single-post-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .single-layout {
        padding: 0 1rem 4rem;
    }

    .single-post-content {
        padding: 1.5rem;
    }

    .single-post-content h2 {
        font-size: 1.35rem;
    }
}

/* ===== BLOG STYLES — Magazine Layout ===== */

/* Hero featured post */
.blog-hero-section {
    background: var(--primary);
    color: white;
    padding: 2rem 2rem 3rem;
}

.blog-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.blog-hero-cat {
    background: var(--gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.85rem;
    border-radius: 0.25rem;
}

.blog-hero-date {
    font-size: 0.85rem;
    opacity: 0.6;
}

.blog-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.blog-hero-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-hero-title a:hover {
    color: var(--gold);
}

.blog-hero-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 2rem;
}

.blog-hero-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.blog-hero-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,185,49,0.35);
}

.blog-hero-right {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--primary-light);
}

.blog-hero-right img,
.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.blog-hero-right:hover img {
    transform: scale(1.04);
}

.blog-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

/* Main blog area */
.blog-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem 5rem;
}

.blog-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.blog-section-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.blog-section-line {
    flex: 1;
    height: 2px;
    background: var(--border);
}

/* Layout: grid + sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

/* Card grid — 2 columns */
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

/* Card style */
.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.blog-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.6rem;
}

.blog-card-cat {
    background: var(--gold);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 0.2rem;
}

.blog-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--accent);
}

.blog-card-excerpt {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}

.blog-card-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}

.blog-card-link:hover {
    gap: 0.6rem;
}

.blog-card-link span {
    transition: transform 0.3s;
}

.blog-card-link:hover span {
    transform: translateX(3px);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.sidebar-block-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

/* Sidebar post list */
.sidebar-post {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    text-decoration: none;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

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

.sidebar-post:hover {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.sidebar-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.sidebar-cta .sidebar-block-title {
    color: white;
    border-bottom-color: var(--gold);
}

.sidebar-cta p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.sidebar-phone {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.sidebar-phone:hover {
    text-decoration: underline;
}

/* Sidebar law list */
.sidebar-law-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-law-list li {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.45;
}

.sidebar-law-list li strong {
    color: var(--accent);
    display: block;
    font-size: 0.85rem;
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination li a,
.blog-pagination li span {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-pagination li span.current,
.blog-pagination li a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Empty state */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1.25rem;
    border: 2px solid var(--border);
    grid-column: 1 / -1;
}

.blog-empty h2 {
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1rem;
}

.blog-empty p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Responsive — Tablet */
@media (max-width: 968px) {
    .blog-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-right {
        aspect-ratio: 16/9;
        max-height: 300px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .sidebar-cta {
        grid-column: 1 / -1;
    }
}

/* Responsive — Mobile */
@media (max-width: 640px) {
    .blog-hero-section {
        padding: 1.5rem 1rem 2rem;
    }

    .blog-hero-title {
        font-size: 1.6rem;
    }

    .blog-hero-excerpt {
        font-size: 0.95rem;
    }

    .blog-main {
        padding: 1.5rem 1rem 4rem;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-card-title {
        font-size: 1rem;
    }
}

/* Scroll animations */
.animate-up { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease,transform 0.6s ease; }
.animate-up.visible { opacity:1; transform:translateY(0); }

/* Form validation states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.valid,
.form-group select.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group .error-message {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: none;
}

.form-group .error-message.show {
    display: block;
}

/* ===== SHARE BUTTONS ===== */
.single-post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.single-post-share span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    flex-shrink: 0;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn-fb { background: #1877F2; }
.share-btn-tw { background: #000; }
.share-btn-li { background: #0A66C2; }
.share-btn-wa { background: #25D366; }
.share-btn-copy {
    background: var(--text-gray);
    cursor: pointer;
    border: none;
    padding: 0;
}
.share-btn-copy.copied { background: #10b981; }

@media (max-width: 640px) {
    .single-post-share {
        flex-wrap: wrap;
    }
}

/* Honeypot field - hidden from humans */
.pf-hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

/* Rate limit feedback */
.form-rate-limit {
    background: #FFF3CD;
    border: 2px solid var(--warning);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    color: #856404;
    display: none;
}

.form-rate-limit.show {
    display: block;
}
