/*
Theme Name: Al Waseem
Theme URI: https://alwaseem-furnituremoving.com
Author: Al Waseem
Author URI: https://alwaseem-furnituremoving.com
Description: A clean, responsive Arabic (RTL) WordPress theme for Al Waseem Furniture Moving. Built from a custom HTML design and optimized for speed, accessibility, and WordPress best practices.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: al-waseem
Tags: rtl-language-support, translation-ready, custom-logo, custom-menu, featured-images, footer-widgets, theme-options, threaded-comments, one-column
*/

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

:root {
    --primary: #006838;
    --primary-dark: #004D2B;
    --secondary: #25D366;
    --accent: #E8A838;
    --dark: #1A1A2E;
    --light-bg: #F0F9F4;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --border-color: #E0E6ED;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Accessibility — screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    left: -9999px;
    position: absolute;
    top: auto;
}

.skip-link:focus {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    left: 10px;
    top: 10px;
    z-index: 1000;
    border-radius: 6px;
}

/* =============================================================
   UTILITY CLASSES
============================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 20px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: #D49220;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* =============================================================
   HEADER
============================================================= */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo,
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 70px;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

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

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* WhatsApp icon inside buttons */
.wa-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Social icons */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0 30px;
    margin: 0 auto;
    max-width: 1200px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-link:hover,
.social-link:focus {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.social-icon {
    display: block;
}

/* =============================================================
   HERO
============================================================= */
.hero {
    background: var(--hero-bg, url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1400&q=80&fit=crop')) center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,104,56,0.88) 0%, rgba(0,50,22,0.92) 100%);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* =============================================================
   TRUST STRIP
============================================================= */
.trust-strip {
    background: var(--light-bg);
    padding: 40px 20px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 4px;
    box-shadow: 0 2px 8px rgba(0,104,56,0.1);
}

.trust-item-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* =============================================================
   SERVICES
============================================================= */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.service-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8E8E8 100%);
    overflow: hidden;
    position: relative;
}

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

.service-card-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-start;
}

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

/* =============================================================
   WHY CHOOSE US
============================================================= */
.why-us {
    background: var(--why-us-bg, url('https://images.unsplash.com/photo-1649083048770-82e8ffd80431?w=1400&q=80&fit=crop')) center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,104,56,0.95) 0%, rgba(0,51,24,0.95) 100%);
    z-index: 1;
}

.why-us .section-title,
.why-us .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.6;
}

.why-us-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================================
   HOW IT WORKS
============================================================= */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================================
   SERVICE AREAS
============================================================= */
.service-areas {
    background: var(--light-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.area-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.area-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,104,56,0.7) 100%);
}

.area-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.area-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.area-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.expansion-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* =============================================================
   TESTIMONIALS
============================================================= */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    border-right: 4px solid var(--accent);
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =============================================================
   FAQ
============================================================= */
.faq {
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    border: none;
    width: 100%;
    text-align: right;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--light-bg);
    padding-right: 25px;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* =============================================================
   QUOTE FORM
============================================================= */
.quote-form-section {
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 50px auto 0;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.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(27, 77, 122, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="radio"] {
    width: auto;
}

.form-submit {
    width: 100%;
    margin-bottom: 15px;
}

.form-alternative {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-alternative a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* Plugin-provided forms (CF7 / WPForms) — keep consistent styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea,
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="date"],
.wpforms-form select,
.wpforms-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    width: 100%;
}

/* =============================================================
   FINAL CTA
============================================================= */
.final-cta {
    background: var(--final-cta-bg, url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1400&q=80&fit=crop')) center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(0,104,56,0.85) 100%);
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* =============================================================
   FOOTER
============================================================= */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section .widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.footer-logo img {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1) brightness(1.5);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================================
   FLOATING WHATSAPP
============================================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 99;
}

.floating-whatsapp .wa-icon {
    width: 30px;
    height: 30px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1f6941;
}

/* =============================================================
   MOBILE CTA BAR
============================================================= */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 10px;
    gap: 10px;
    z-index: 98;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-cta-bar a {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* =============================================================
   SUCCESS MESSAGE
============================================================= */
.success-message {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.fade-in-animation {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================================
   STANDARD WP CONTENT (page / single / archive / 404)
============================================================= */
.site-main {
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header .page-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: var(--text-dark);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--primary);
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

.entry-content p {
    margin-bottom: 1.2em;
}

.entry-content a {
    color: var(--secondary);
}

.entry-content img {
    border-radius: 8px;
    margin: 1em 0;
}

.entry-content blockquote {
    border-right: 4px solid var(--accent);
    padding: 10px 20px;
    background: var(--light-bg);
    margin: 1em 0;
    border-radius: 6px;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.post-card .entry-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.post-card .entry-title a {
    color: var(--primary);
    text-decoration: none;
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--primary);
}

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

/* 404 */
.error-404 {
    text-align: center;
    padding: 80px 20px;
}

.error-404 .error-code {
    font-size: 6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.error-404 p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Comments */
.comments-area {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.comment-list li {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    /* Hide desktop nav on mobile with higher specificity than default */
    .site-header .main-navigation {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    /* Mobile open state — slides down from under the header.
       Uses !important and high specificity so it always wins. */
    .site-header .main-navigation.mobile-open {
        display: flex !important;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 10px 20px;
        z-index: 99;
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .site-header .main-navigation.mobile-open ul {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .site-header .main-navigation.mobile-open li {
        width: 100%;
    }

    .site-header .main-navigation.mobile-open a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--border-color);
        display: block;
        font-size: 1rem;
        color: var(--text-dark);
        text-decoration: none;
    }

    .site-header .main-navigation.mobile-open li:last-child a {
        border-bottom: 0;
    }

    .site-header .main-navigation.mobile-open a:hover,
    .site-header .main-navigation.mobile-open a:focus {
        color: var(--primary);
        background: var(--light-bg);
        padding-right: 10px;
        padding-left: 10px;
    }

    /* Body lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .phone-display {
        display: none;
    }

    .header-right {
        gap: 15px;
    }

    .hero {
        padding: 100px 20px 60px;
        margin-top: 50px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .hero-badges {
        gap: 15px;
    }

    .badge {
        font-size: 0.85rem;
    }

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

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

    .service-card-image {
        height: 180px;
    }

    .why-us {
        background-attachment: scroll;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .area-card-image {
        height: 180px;
    }

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

    .final-cta {
        background-attachment: scroll;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

    .floating-whatsapp {
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .success-message {
        bottom: 80px;
        right: 10px;
        left: 10px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-item {
        gap: 6px;
    }

    .trust-item-icon {
        width: 40px;
        height: 40px;
    }

    .trust-item-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-item-label {
        font-size: 0.8rem;
    }

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

    .site-logo,
    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 160px;
        height: 50px;
    }

    .faq-question {
        padding: 15px;
    }

    .form-container {
        padding: 25px 15px;
    }
}
