/* IT Cares - Unified Styles v5.0 */
/* Mobile-First, Blog-Style Header, Fixed Spacing */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --danger: #ef4444;
    --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==================== HEADER ==================== */
header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    cursor: pointer;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Phone Button */
.nav-phone {
    background: var(--secondary);
    color: white !important;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    margin-left: 0.3rem;
    font-size: 0.95rem;
}

.nav-phone:hover {
    background: #059669;
    color: white !important;
}

/* Contact Button */
.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 0.3rem;
}

.nav-cta:hover {
    opacity: 0.9;
    color: white !important;
}

/* Language Switcher */
.lang-switcher-btn {
    background: transparent;
    border: 1.5px solid var(--gray-light);
    color: var(--dark) !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-left: 0.4rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-switcher-btn:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(37,99,235,0.06);
}

/* ==================== NAV DROPDOWN ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--primary);
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 12px;
    min-width: 240px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
    color: var(--dark) !important;
    border-bottom: 1px solid #f1f5f9;
    width: auto !important;
    text-align: left !important;
    white-space: nowrap;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--primary) !important;
}



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    z-index: 1001;
}

/* ==================== HERO ==================== */
.hero {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hero-small {
    background: var(--gradient);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero-small h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-small p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==================== SEARCH BAR (Blog) ==================== */
.search-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-box i {
    color: var(--gray);
    font-size: 1.1rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
}

.search-box input::placeholder {
    color: var(--gray-light);
}

/* ==================== FILTER BAR (Blog) ==================== */
.filter-bar {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 65px;
    z-index: 999;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid #e5e7eb;
    background: var(--white);
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--white);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gray);
    text-align: center;
    margin-bottom: 2rem;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

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

.breadcrumb span {
    color: var(--gray);
}

/* ==================== DEFINITION BLOCK ==================== */
.definition-block {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.definition-block h2 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.definition-block p {
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.definition-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.definition-block li {
    color: var(--dark-light);
    margin-bottom: 0.5rem;
}

.definition-block .highlight {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* ==================== STATS GRID ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-card .stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.stat-card .stat-source {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-top: 0.5rem;
}

/* ==================== STEPS ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

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

/* ==================== PROBLEMS SECTION ==================== */
.problems-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
}

.problems-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.problems-section .section-subtitle {
    color: #c4b5fd;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.problem-card h3 {
    color: #a78bfa;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-card p {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card .badge,
.pricing-card .badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card.popular .badge-popular {
    background: var(--gradient);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-card .price-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.pricing-card .description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.service-card-white {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card-white:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-card-white .badge-popular,
.service-card-white .badge-nouveau {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-card-white .badge-nouveau {
    background: var(--secondary);
}

.service-card-white .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-white h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-card-white .service-description {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card-white .feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card-white .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-light);
    font-size: 0.9rem;
}

.service-card-white .feature-list i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.service-card-white .price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card-white .price-large .monthly {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary,
.btn-service,
.btn-buy {
    background: var(--gradient);
    color: white;
    width: 100%;
}

.btn-primary:hover,
.btn-service:hover,
.btn-buy:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* ==================== CTA BOX ==================== */
.cta-box {
    background: var(--gradient);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin: 2rem 0;
}

.cta-box h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: scale(1.05);
}

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

.cta-btn-outline {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

/* ==================== FAQ ==================== */
.faq-section {
    background: var(--white);
    padding: 4rem 0;
}

.faq-help-box {
    background: var(--gradient);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: white;
    flex-wrap: wrap;
}

.faq-help-icon {
    font-size: 3rem;
}

.faq-help-content {
    flex: 1;
    min-width: 250px;
}

.faq-help-content h3 {
    margin-bottom: 0.5rem;
}

.faq-help-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.faq-help-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.faq-help-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.faq-help-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-phone,
.btn-email {
    background: white;
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-email {
    background: rgba(255,255,255,0.2);
    color: white;
}

.faq-accordion,
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item,
.faq-item-accordion {
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.3s;
    gap: 1rem;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i,
.faq-item-accordion.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--dark-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer,
.faq-item-accordion.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item .info h4 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.contact-info-item .info a,
.contact-info-item .info p {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.contact-info-item .info a:hover {
    color: var(--primary);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--white);
}

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

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

/* ==================== FOOTER ==================== */
/* Footer Top Bar - NAP + Hours */
.footer-top-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--dark-light);
}

.footer-top-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.88rem;
}

.footer-top-item i {
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-top-item a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.footer-top-item a:hover {
    color: white;
}


footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.logo-footer {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-contact a,
.footer-contact span,
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact a:hover,
.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
}

.modal-content .icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ==================== BLOG SPECIFIC ==================== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

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

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.section-icon {
    font-size: 1.8rem;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0;
}

.section-count {
    background: var(--light);
    color: var(--gray);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-top: 4px solid var(--primary);
    display: block;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.article-card.red { border-top-color: #ef4444; }
.article-card.green { border-top-color: #10b981; }
.article-card.purple { border-top-color: #8b5cf6; }
.article-card.orange { border-top-color: #f59e0b; }
.article-card.blue { border-top-color: #2563eb; }

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

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

.card-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.article-card.red .card-category { color: #ef4444; }
.article-card.green .card-category { color: #10b981; }
.article-card.purple .card-category { color: #8b5cf6; }
.article-card.orange .card-category { color: #f59e0b; }

.card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--dark);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.read-time {
    font-size: 0.8rem;
    color: var(--gray-light);
}

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

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        gap: 0;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-phone,
    .nav-cta {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0 0 0;
    }
    

    .nav-dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        border: none;
        transform: none;
        left: auto;
        background: #f8fafc;
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        display: none;
    }
    
    .nav-dropdown-menu a {
        padding: 0.75rem 2rem !important;
        font-size: 0.85rem !important;
        border-bottom: 1px solid #e5e7eb;
        color: var(--gray) !important;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top-bar {
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-small {
        padding: 2rem 0;
    }
    
    .hero-small h1 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .definition-block {
        padding: 1.5rem;
    }
    
    .definition-block h2 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-card .stat-value {
        font-size: 1.5rem;
    }
    
    .steps-grid,
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.3rem;
    }
    
    .faq-help-box {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-help-stats {
        justify-content: center;
    }
    
    .faq-help-buttons {
        justify-content: center;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-form-card {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact a,
    .footer-contact span,
    .footer-contact-item {
        justify-content: center;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .service-card-white,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .filter-bar {
        top: 57px;
    }
}
