/* =================================================================
   ABOUT & SERVICES SECTIONS - AUTOMOTIVE DESIGN
   ================================================================= */

/* =================================================================
   ABOUT SECTION
   ================================================================= */
.section-about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Content (Left) */
.about-content {
    padding-right: 20px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    background: rgba(74, 159, 212, 0.12);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Value Points */
.value-points {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.value-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* About Image (Right) */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

/* =================================================================
   SERVICES SECTION — Numbered 2×2 Cards
   ================================================================= */
.section-services {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 15px auto 0;
}

/* Services Grid — 2×2 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: left;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--medium-gray);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Big number */
.service-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.85;
}

/* Small inline icon */
.service-icon-sm {
    width: 44px;
    height: 44px;
    background: rgba(74, 159, 212, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.15rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon-sm {
    background: var(--primary-red);
    color: var(--white);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.promo-expire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

/* =================================================================
   GALLERY SECTION
   ================================================================= */
.section-pad {
    padding: 100px 0;
}

.bg-white {
    background: var(--white);
}

.section-title {
    margin-bottom: 50px;
}

.section-title.text-center {
    text-align: center;
}

.section-title .label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    background: rgba(74, 159, 212, 0.12);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid utility */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Gallery items are handled by existing gallery styles in style.css */

/* =================================================================
   BLOG / ARTICLE SECTION — Featured + Side Stack
   ================================================================= */
.article-section {
    background: var(--light-gray);
}

/* Main split layout */
.blog-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* ---- LEFT: Featured Post ---- */
.blog-featured {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-featured:hover {
    box-shadow: var(--shadow-2xl);
}

.blog-featured-thumb {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--medium-gray);
}

.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured-img {
    transform: scale(1.05);
}

.blog-featured-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-featured-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-featured-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-featured-title a:hover {
    color: var(--primary-red);
}

.blog-featured-body .article-excerpt {
    flex: 1;
}

.blog-featured-body .article-link {
    margin-top: auto;
}

/* ---- RIGHT: Side Stack ---- */
.blog-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-side-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 1;
}

.blog-side-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-3px);
}

.blog-side-thumb {
    width: 180px;
    min-width: 180px;
    overflow: hidden;
    background: var(--medium-gray);
}

.blog-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-side-card:hover .blog-side-img {
    transform: scale(1.05);
}

.blog-side-body {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-side-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-side-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-side-title a:hover {
    color: var(--primary-red);
}

/* Shared sub-elements */
.article-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.article-excerpt {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
}

.article-link:hover {
    gap: 12px;
    color: var(--primary-red-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .blog-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-side-thumb {
        width: 120px;
        min-width: 120px;
    }

    .blog-side-body {
        padding: 14px 14px 14px 0;
    }

    .blog-side-title {
        font-size: 1rem;
    }

    .blog-featured-thumb {
        height: 220px;
    }
}

/* =================================================================
   CONTACT / CTA FOOTER SECTION
   ================================================================= */
.cta-section {
    padding: 80px 0;
    background: #1a2332;
    /* Match Home Hero */
    position: relative;
    overflow: hidden;
}

/* Abstract Lines Effect (Match Home Hero & Post Hero) */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 45%, rgba(74, 159, 212, 0.03) 45%, rgba(74, 159, 212, 0.03) 46%, transparent 46%),
        linear-gradient(135deg, transparent 55%, rgba(74, 159, 212, 0.02) 55%, rgba(74, 159, 212, 0.02) 56%, transparent 56%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0;
    /* Override previous radius */
}

/* Bottom Glow Line */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 159, 212, 0.3), transparent);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Button override for WhatsApp */
.cta-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .section-about,
    .section-services {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .promo-title {
        font-size: 2rem;
    }

    .btn-promo {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

/* =================================================================
   WHY CHOOSE US — Split Layout (Content Left, Image Right)
   ================================================================= */
.section-why {
    padding: 100px 0;
    background: var(--white);
}

/* Split grid */
.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left content */
.why-content {
    padding-right: 20px;
}

.why-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Feature points */
.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-point-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.why-point-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.why-point-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

/* Right image */
.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 968px) {
    .why-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-content {
        padding-right: 0;
    }

    .why-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .section-why {
        padding: 60px 0;
    }

    .why-points {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   PROMO SECTION
   ================================================================= */
.section-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0.5;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.promo-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.promo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-red);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-promo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--white);
    color: var(--primary-red-dark);
}

/* WhatsApp Button for Footer CTA */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 2rem;
    }

    .promo-cta {
        flex-direction: column;
        gap: 15px;
    }
}

/* =================================================================
   PAGE TEMPLATE STYLES
   ================================================================= */
.page-container {
    padding: 60px 20px;
}

.page-content-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.page-title-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.page-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* =================================================================
   CONTACT PAGE STYLES
   ================================================================= */
.contact-card {
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 159, 212, 0.15);
}

/* Custom Button Style */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
    color: var(--white);
}

.btn-submit-wa {
    width: 100%;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}