/*
Theme Name: AutoParts Itaquera
Theme URI: https://matheusribeiro.me
Author: Matheus Ribeiro
Description: A modern,  WordPress theme for an auto parts store in Itaquera.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: autoparts-itaquera
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    --primary-red: #D32F2F;
    --dark-red: #B71C1C;
    --text-black: #111111;
    --bg-white: #FFFFFF;
    --bg-light: #F7F7F7;
    --text-gray: #666666;
    --border-color: #E5E5E5;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-black);
    background: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-red:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: white;
}

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

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

.btn-outline-dark {
    background: transparent;
    color: var(--text-black);
    border-color: var(--text-black);
    font-size: 0.8rem;
}

.btn-outline-dark:hover {
    background: var(--text-black);
    color: white;
}

/* ============================================================
   SECTION LABELS
============================================================ */
.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
    background: #000000;
    border-bottom: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-logo,
.custom-logo {
    max-height: 50px;
    width: auto;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.site-logo-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 3px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.main-navigation a:hover {
    color: white;
}

.main-navigation a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Mobile nav overlay */
.mobile-nav-open .main-navigation {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
}

.mobile-nav-open .main-navigation ul {
    flex-direction: column;
    gap: 0;
}

.mobile-nav-open .main-navigation a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0d0d0d 1%, #0000004d 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-feature-cards {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.hero-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.4rem;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-feature-card i {
    color: var(--primary-red);
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
    display: block;
}

.hero-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.hero-feature-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.hero-image {
    position: relative;
}

.hero-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
    background: #0d0d0d;
    padding: 0;
}

/* Top row: label + big title, full width with padding */
.about-header {
    padding: 3rem 5% 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.5rem;
}

/* Bottom row: image bleeds left, text on right */
.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-image-wrap {
    overflow: hidden;
    display: flex;
}

.about-img-placeholder {
    width: 100%;
    flex: 1;
    display: block;
    overflow: hidden;
    border-bottom-right-radius: 50px;
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Text column */
.about-content-wrap {
    padding: 3rem 5% 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-content-wrap p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Button sits at the bottom, spanning from image edge */
.about-btn {
    align-self: flex-start;
    margin-top: 1rem;
}


/* ============================================================
   HOURS & MAP SECTION
============================================================ */
.hours-map-section {
    background: #0d0d0d;
    padding: 4rem 5%;
}

.hours-map-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-title {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hours-divider {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: 1.8rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.hours-list li strong {
    color: white;
}

.hours-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.hours-phone i {
    color: var(--primary-red);
}

.hours-phone:hover {
    color: var(--primary-red);
}

.map-col iframe {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}


/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header-row h2 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.service-card--featured .service-img-placeholder {
    background: linear-gradient(135deg, #D32F2F, #8B0000);
    color: rgba(255, 255, 255, 0.4);
}

.service-card h4 {
    padding: 1.2rem 1.5rem 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section {
    position: relative;
    background: #0a0a0a;
    padding: 6rem 0;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 55%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.stats-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.stats-text p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

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

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.stats-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #1a1a1a, #2a1a1a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* ============================================================
   PROJECTS SECTION
============================================================ */
.projects-section {
    padding: 6rem 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

.project-card:nth-child(2) .project-img-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #444);
}

.project-card:nth-child(3) .project-img-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.faq-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-black);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-item--open .faq-question {
    color: var(--primary-red);
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 0 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-card {
    background: var(--text-black);
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   CTA PHONE SECTION
============================================================ */
.cta-phone-section {
    position: relative;
    background: #0a0a0a;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-phone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.cta-phone-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-phone-bar {
    width: 4px;
    height: 70px;
    background: var(--primary-red);
    flex-shrink: 0;
}

.cta-phone-number {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 0;
}

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

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    text-align: center;
}

/* ============================================================
   HEADER DARK (INTERNAL PAGES)
============================================================ */
.site-header.header-dark {
    background: #000000;
}

/* ============================================================
   PAGE BANNER (INTERNAL PAGES)
============================================================ */
.page-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #2a1010 100%);
    padding: 8rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.page-banner h1 {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.page-banner .breadcrumb {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.page-banner .breadcrumb a:hover {
    color: white;
}

/* ============================================================
   BLOG CARDS (index.php)
============================================================ */
.blog-listing {
    padding: 4rem 0 5rem;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(.22, .61, .36, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card .post-content {
    padding: 1.6rem 1.8rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.blog-card .entry-meta i {
    color: var(--primary-red);
    font-size: 0.75rem;
}

.blog-card .entry-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.blog-card .entry-title a {
    color: var(--text-black);
    transition: color 0.3s;
}

.blog-card .entry-title a:hover {
    color: var(--primary-red);
}

.blog-card .entry-summary {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-card .entry-summary p {
    margin: 0;
}

.blog-card .entry-footer {
    margin-top: auto;
}

.blog-card .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s, color 0.3s;
}

.blog-card .btn-read-more:hover {
    color: var(--dark-red);
    gap: 0.8rem;
}

.blog-card .btn-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.blog-card .btn-read-more:hover i {
    transform: translateX(3px);
}

/* No thumbnail placeholder */
.blog-card .post-thumbnail-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card .post-thumbnail-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

/* No results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Posts navigation */
.posts-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.posts-navigation a {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.posts-navigation a:hover {
    color: var(--dark-red);
}

/* ============================================================
   SINGLE POST (single.php)
============================================================ */
.single-content {
    padding: 4rem 0 5rem;
    background: var(--bg-white);
}

.single-article {
    max-width: 800px;
    margin: 0 auto;
}

.single-article .entry-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.single-article .entry-meta i {
    color: var(--primary-red);
    margin-right: 0.35rem;
}

.single-article .post-thumbnail {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.single-article .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-article .entry-content {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #333;
}

.single-article .entry-content p {
    margin-bottom: 1.5rem;
}

.single-article .entry-content h2,
.single-article .entry-content h3 {
    margin: 2rem 0 1rem;
    color: var(--text-black);
}

.single-article .entry-content a {
    color: var(--primary-red);
    text-decoration: underline;
}

.single-article .entry-content a:hover {
    color: var(--dark-red);
}

.single-article .entry-content img {
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-article .entry-content blockquote {
    border-left: 4px solid var(--primary-red);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    font-style: italic;
    color: var(--text-gray);
}

.single-article .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.single-article .post-tags {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.single-article .post-tags a {
    color: var(--primary-red);
    text-decoration: none;
}

.single-article .post-tags a:hover {
    color: var(--dark-red);
}

.single-article .post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.single-article .post-navigation a {
    color: var(--text-black);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.single-article .post-navigation a:hover {
    color: var(--primary-red);
}

.single-article .post-navigation i {
    color: var(--primary-red);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;

    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

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

/*
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}*/

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-body {
        grid-template-columns: 1fr;
    }

    .about-content-wrap {
        padding: 3rem 5%;
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stats-img-placeholder {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-social {
        flex-direction: row;
        align-items: flex-start;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .project-card {
        height: 200px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }


    .hero-feature-cards {
        flex-direction: column;
    }

    .cta-phone-number {
        font-size: 2.2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .page-banner {
        padding: 7rem 0 2.5rem;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .single-article .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .single-article .post-navigation {
        flex-direction: column;
    }
}

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

    .about-text h2,
    .stats-text h2,
    .faq-left h2 {
        font-size: 1.8rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}