/* ================================================================
   STYLES.CSS — Estilos Globales (cargado de forma diferida)
   PizarraTech Madrid — Tejados de Pizarra R&R
   ================================================================ */

/* ---- TOPBAR ---- */
.topbar {
    background: var(--color-primary);
    color: rgba(255,255,255,.72);
    font-size: .8rem;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

.topbar .container { padding: 0 20px }

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 16px
}

.topbar-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.72);
    transition: color .2s
}

.topbar-email:hover { color: #fff }

.topbar-email svg,
.topbar-hours svg {
    width: 13px;
    height: 13px;
    fill: var(--color-secondary);
    flex-shrink: 0
}

.topbar-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.55)
}

.topbar-sep {
    color: rgba(255,255,255,.2);
    font-size: .7rem
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 4px
}

.topbar-social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(255,255,255,.55);
    transition: all .2s
}

.topbar-social-link:hover {
    background: rgba(255,255,255,.1);
    color: #fff
}

.topbar-social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor
}

@media(max-width:767px) {
    .topbar-hours,
    .topbar-sep { display: none }

    .topbar-inner { height: 34px }
}

/* ---- SECTIONS ---- */
.section {
    padding: 56px 0
}

.section-alt {
    background: var(--color-bg-light)
}

.section-dark {
    background: var(--color-bg-dark);
    color: #fff
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-primary)
}

.section-dark .section-title {
    color: #fff
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75)
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    margin-bottom: 10px
}

/* ---- GRID SYSTEM ---- */
.grid {
    display: grid;
    gap: 24px
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }
}

/* ---- SERVICES CARDS ---- */
.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition)
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    border-color: var(--color-secondary)
}

.service-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px
}

.service-card .icon svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary)
}

.service-card p {
    font-size: 0.93rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px
}

.service-card .card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition)
}

.service-card .card-link:hover {
    gap: 8px
}

.service-card .card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor
}

/* ---- FEATURES LIST ---- */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 10px
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    transition: var(--transition)
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--color-primary), #334155);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-primary)
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5
}

@media(max-width:767px) {
    .features-list {
        grid-template-columns: 1fr
    }
}

/* ---- WHY US / STATS ---- */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 28px
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 6px
}

/* ---- PROCESS ---- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step
}

.process-step {
    text-align: center;
    position: relative
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    width: 52px;
    height: 52px;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-text-light)
}

@media(max-width:767px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
}

@media(max-width:480px) {
    .process-steps {
        grid-template-columns: 1fr
    }
}

/* ---- REVIEWS ---- */
.review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem
}

.review-meta {
    font-size: 0.82rem;
    color: var(--color-text-light)
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 12px
}

.review-text {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic
}

.review-google {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.6
}

.review-google svg {
    width: 24px;
    height: 24px
}

/* ---- FAQ ---- */
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    background: var(--color-bg);
    transition: var(--transition);
    gap: 12px
}

.faq-question:hover {
    background: var(--color-bg-light)
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    fill: var(--color-text-light)
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease
}

.faq-item.open .faq-answer {
    max-height: 500px
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light)
}

.faq-answer-inner strong {
    color: var(--color-text)
}

/* ---- ZONES ---- */
.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px
}

.zone-tag {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition)
}

.zone-tag:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: translateY(-2px)
}

/* ---- FIX EMOJI ICON SIZE IN CARDS ---- */
.zona-card > span:first-child,
.zona-card-icon {
    font-size: 1.1rem !important;
    flex-shrink: 0;
    line-height: 1
}

/* ---- TRABAJOS GALLERY PREMIUM DESIGN ---- */
.trabajos-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 36px
}

.trabajo-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    z-index: 1;
}

.trabajo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.trabajo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(180, 83, 9, 0.1);
}

.trabajo-card:hover::before {
    opacity: 1;
}

.trabajo-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), #334155);
}

.trabajo-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.trabajo-card:hover .trabajo-card-img::after {
    opacity: 0.8;
}

.trabajo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trabajo-card:hover .trabajo-card-img img {
    transform: scale(1.08);
}

.trabajo-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trabajo-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    background: #fff;
    z-index: 3;
}

.trabajo-card-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: rgba(180, 83, 9, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.trabajo-card-loc svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.trabajo-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
    transition: color 0.3s;
}

.trabajo-card:hover h3 {
    color: var(--color-secondary);
}

.trabajo-card p {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex: 1;
    margin-top: 4px;
}

.trabajo-card-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
}

.trabajo-card-overlay-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 2px;
}

.trabajo-card:hover .trabajo-card-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media(max-width:992px) {
    .trabajos-preview { grid-template-columns: repeat(2, 1fr) }
}

@media(max-width:767px) {
    .trabajos-preview { grid-template-columns: 1fr }
}

/* ---- SEO TEXT SECTION ---- */
.seo-content-section {
    padding: 48px 0;
    background: #fff
}

.seo-content-section h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px
}

.seo-content-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 28px 0 12px
}

.seo-content-section p {
    margin-bottom: 14px;
    color: var(--color-text);
    line-height: 1.75;
    font-size: .97rem
}

/* ---- BLOG POST-CARD IMAGE FIX ---- */
.post-card-image svg {
    width: 40px !important;
    height: 40px !important;
    opacity: .25
}

/* ---- CTA SECTION ---- */
.cta-section {
    text-align: center;
    padding: 56px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #334155 100%);
    color: #fff
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto
}

.cta-section .cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ---- MAP ---- */
.map-facade {
    position: relative;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 350px
}

.map-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.map-facade iframe {
    width: 100%;
    height: 350px;
    border: 0
}

/* ---- FOOTER ---- */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px
}

.footer h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative
}

.footer h3::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--color-secondary);
    margin-top: 8px;
    border-radius: 3px
}

.footer address {
    font-style: normal;
    line-height: 1.8;
    font-size: 0.9rem
}

.footer a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    transition: color 0.2s
}

.footer a:hover {
    color: var(--color-secondary)
}

.footer ul li {
    margin-bottom: 8px
}

.footer-hours {
    margin-top: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6)
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5)
}

.footer-legal nav {
    display: flex;
    gap: 16px
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5)
}

@media(max-width:767px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-legal {
        flex-direction: column;
        text-align: center
    }
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border)
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px
}

.breadcrumbs a {
    color: var(--color-text-light);
    transition: color 0.2s
}

.breadcrumbs a:hover {
    color: var(--color-secondary)
}

.breadcrumbs li:not(:last-child)::after {
    content: 'â€º';
    margin-left: 6px;
    color: var(--color-border)
}

.breadcrumbs li:last-child {
    color: var(--color-text);
    font-weight: 500
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.25s, box-shadow 0.25s
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5)
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff
}

@media(max-width:767px) {
    .whatsapp-float {
        bottom: 80px
    }
}

/* ---- MOBILE CTA BAR ---- */
.mobile-cta-bar {
    display: none
}

@media(max-width:767px) {
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        z-index: 999;
        background: var(--color-bg);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px;
        gap: 8px
    }

    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.95rem;
        min-height: 48px
    }

    .cta-call {
        background: var(--color-secondary);
        color: #fff
    }

    .cta-whatsapp {
        background: var(--color-whatsapp);
        color: #fff
    }

    .mobile-cta-bar a svg {
        width: 18px;
        height: 18px;
        fill: currentColor
    }

    body {
        padding-bottom: 72px
    }
}

/* ---- FORM ---- */
.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-base);
    transition: border-color 0.2s;
    background: var(--color-bg)
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12)
}

.form-disclaimer {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-top: 10px;
    text-align: center
}

/* ---- PAGE HEADER ---- */
.page-header {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.82));
    z-index: 1;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header-cta {
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

@media(max-width:767px) {
    .page-header {
        padding: 40px 0
    }

    .page-header h1 {
        font-size: 1.8rem
    }
}

/* ---- SECTION ---- */
.content-body {
    padding: 50px 0
}

.content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 35px 0 14px
}

.content-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 10px
}

.content-body p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--color-text)
}

.content-body ul,
.content-body ol {
    margin-bottom: 16px;
    padding-left: 24px
}

.content-body ul {
    list-style: disc
}

.content-body ol {
    list-style: decimal
}

.content-body li {
    margin-bottom: 8px;
    line-height: 1.6
}

.content-body strong {
    color: var(--color-primary)
}

/* Content-visibility for below-the-fold */
.lazy-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px
}

/* ---- PRICE TABLE ---- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden
}

.price-table th {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem
}

.price-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.93rem
}

.price-table tr:nth-child(even) {
    background: var(--color-bg-light)
}

.price-table tr:hover {
    background: rgba(14, 165, 233, 0.05)
}

/* ---- GALLERY ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.gallery-grid img {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s
}

.gallery-grid img:hover {
    transform: scale(1.03)
}

@media(max-width:767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ---- FEATURES LIST ---- */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--color-primary), #334155);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5
}

@media(max-width:767px) {
    .features-list {
        grid-template-columns: 1fr
    }
}

/* ---- RELATED SERVICES ---- */
.related-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition)
}

.related-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.related-card svg {
    width: 20px;
    height: 20px;
    fill: var(--color-secondary);
    flex-shrink: 0
}

.related-card span {
    font-weight: 600;
    font-size: 0.9rem
}

@media(max-width:767px) {
    .related-services {
        grid-template-columns: 1fr
    }
}

/* ---- INLINE CTA BANNERS ---- */
.cta-inline {
    text-align: center;
    padding: 45px 20px;
    background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
    color: #fff;
    margin: 0
}

.cta-inline h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px
}

.cta-inline p {
    font-size: 1rem;
    opacity: .92;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.cta-inline .btn-white {
    background: #fff;
    color: #b45309;
    border-color: #fff
}

.cta-inline .btn-white:hover {
    background: #fef3c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2)
}

/* ---- SECTION DARK GRADIENT ---- */
.section-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    color: #fff
}

.section-gradient .section-label {
    color: #f59e0b
}

.section-gradient .section-title {
    color: #fff
}

.section-gradient .section-subtitle {
    color: rgba(255, 255, 255, .75)
}

.section-gradient .stat-number {
    color: #f59e0b
}

.section-gradient .stat-label {
    color: rgba(255, 255, 255, .7)
}

/* ---- GALLERY ---- */
.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px
}

.gallery-showcase img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .3s, box-shadow .3s
}

.gallery-showcase img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

@media(max-width:767px) {
    .gallery-showcase {
        grid-template-columns: 1fr
    }

    .gallery-showcase img {
        height: 200px
    }
}

/* ---- SECTION CTA BUTTON ---- */
.section-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap
}

/* ---- BTN ACCENT ---- */
.btn-accent {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent)
}

.btn-accent:hover {
    background: #0284c7;
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, .35)
}

.btn-sm {
    padding: 10px 20px;
    font-size: .9rem
}

/* Full width map */
.map-full-section .map-wrapper { border-radius: 0; border: none; box-shadow: none; }
.map-full-section .map-caption { padding: 15px; font-size: 0.9rem; justify-content: center; background: var(--color-primary); color: #fff; display: flex; align-items: center; gap: 8px; }



