/*!
 * STGFiles Template CSS
 * Visual design matching stgfiles.com
 * Applied when homepage_layout = 3
 */

/* ── Fonts ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    --stg-red:        #eb1d31;
    --stg-red-dark:   #c91525;
    --stg-red-light:  #ff3347;
    --stg-dark:       #1a1a1a;
    --stg-dark-2:     #0c0c0d;
    --stg-dark-3:     #111111;
    --stg-gray-light: #f0f0f0;
    --stg-gray-mid:   #888888;
    --stg-text:       #222222;
    --stg-white:      #ffffff;
}

/* ── Base (scoped to layout-3) ──────────────────────────────────────────── */
body.layout-3 {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--stg-text);
    background-color: var(--stg-white);
}

body.layout-3 h1,
body.layout-3 h2,
body.layout-3 h3,
body.layout-3 h4,
body.layout-3 h5,
body.layout-3 h6 {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

body.layout-3 a {
    transition: all 0.3s;
    text-decoration: none;
}

/* ── Header: top info bar ───────────────────────────────────────────────── */
body.layout-3 .stg-topbar {
    background: var(--stg-dark-2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 36px;
    display: flex;
    align-items: center;
}

body.layout-3 .stg-topbar a {
    color: #aaa;
    font-size: 12px;
}

body.layout-3 .stg-topbar a:hover {
    color: var(--stg-white);
}

body.layout-3 .stg-topbar-icon {
    color: var(--stg-red);
}

/* ── Header: main nav ───────────────────────────────────────────────────── */
body.layout-3 .stg-navbar {
    background: var(--stg-dark-2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.layout-3 .stg-nav-link {
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 16px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
}

body.layout-3 .stg-nav-link:hover,
body.layout-3 .stg-nav-link.active {
    color: var(--stg-white);
}

body.layout-3 .stg-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--stg-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

body.layout-3 .stg-nav-link:hover::after,
body.layout-3 .stg-nav-link.active::after {
    transform: scaleX(1);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
body.layout-3 .stg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

body.layout-3 .stg-btn-primary {
    background: var(--stg-red);
    color: var(--stg-white);
}

body.layout-3 .stg-btn-primary:hover {
    background: var(--stg-red-dark);
    color: var(--stg-white);
}

body.layout-3 .stg-btn-dark {
    background: var(--stg-dark);
    color: var(--stg-white);
}

body.layout-3 .stg-btn-dark:hover {
    background: #333;
    color: var(--stg-white);
}

body.layout-3 .stg-btn-outline {
    background: transparent;
    color: var(--stg-dark);
    border: 2px solid var(--stg-dark);
}

body.layout-3 .stg-btn-outline:hover {
    background: var(--stg-dark);
    color: var(--stg-white);
}

/* ── Hero Slider ────────────────────────────────────────────────────────── */
body.layout-3 .stg-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: var(--stg-dark-2);
    overflow: hidden;
}

@media (min-width: 768px) {
    body.layout-3 .stg-hero { min-height: 620px; }
}

@media (min-width: 1024px) {
    body.layout-3 .stg-hero { min-height: 80vh; }
}

body.layout-3 .stg-hero-slide {
    position: absolute;
    inset: 0;
}

body.layout-3 .stg-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.layout-3 .stg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

body.layout-3 .stg-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: 64px 16px;
    text-align: center;
}

body.layout-3 .stg-hero-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    body.layout-3 .stg-hero-logo img { height: 64px; }
}

@media (min-width: 1024px) {
    body.layout-3 .stg-hero-logo img { height: 80px; }
}

body.layout-3 .stg-hero-badge {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    font-weight: 500;
}

body.layout-3 .stg-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 4vw, 32px);
    font-weight: 700;
    color: var(--stg-white);
    margin-bottom: 32px;
    max-width: 640px;
    line-height: 1.3;
}

/* ── Vehicle Search ─────────────────────────────────────────────────────── */
body.layout-3 .stg-search-section {
    background: var(--stg-gray-light);
    padding: 40px 16px;
}

body.layout-3 .stg-search-box {
    background: var(--stg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}

body.layout-3 .stg-search-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 24px;
    gap: 0;
}

body.layout-3 .stg-search-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}

body.layout-3 .stg-search-tab.active,
body.layout-3 .stg-search-tab:hover {
    color: var(--stg-red);
    border-bottom-color: var(--stg-red);
}

body.layout-3 .stg-search-tab img {
    width: 28px;
    height: auto;
}

body.layout-3 .stg-search-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 6px;
}

body.layout-3 .stg-search-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ccc;
    background: var(--stg-white);
    padding: 10px 32px 10px 12px;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    color: #444;
    border-radius: 0;
    cursor: pointer;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

body.layout-3 .stg-search-select:focus {
    outline: none;
    border-color: var(--stg-red);
}

body.layout-3 .stg-search-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body.layout-3 .stg-search-btn {
    width: 100%;
    padding: 11px 24px;
    background: var(--stg-dark);
    color: var(--stg-white);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
}

body.layout-3 .stg-search-btn:hover {
    background: #333;
}

/* ── Section Titles ─────────────────────────────────────────────────────── */
body.layout-3 .stg-section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--stg-red);
    display: block;
    margin-bottom: 6px;
}

body.layout-3 .stg-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--stg-dark);
    line-height: 1.15;
}

body.layout-3 .stg-section-title-light {
    color: var(--stg-white);
}

/* ── Process Steps ──────────────────────────────────────────────────────── */
body.layout-3 .stg-steps-section {
    background: var(--stg-white);
    padding: 56px 16px;
}

body.layout-3 .stg-step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    user-select: none;
}

body.layout-3 .stg-step-num-accent { color: var(--stg-red); }
body.layout-3 .stg-step-num-muted  { color: #e8e8e8; }

body.layout-3 .stg-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stg-red);
    margin-bottom: 6px;
}

body.layout-3 .stg-step-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    max-width: 160px;
    margin: 0 auto;
}

/* ── Services Section ───────────────────────────────────────────────────── */
body.layout-3 .stg-services-section {
    background: var(--stg-dark-2);
    padding: 64px 16px 80px;
    position: relative;
    clip-path: polygon(0 18px, 100% 0, 100% calc(100% - 18px), 0 100%);
}

@supports not (clip-path: polygon(0 0)) {
    body.layout-3 .stg-services-section {
        clip-path: none;
    }
}

body.layout-3 .stg-service-card {
    width: 160px;
    flex-shrink: 0;
    cursor: pointer;
}

@media (min-width: 576px) {
    body.layout-3 .stg-service-card { width: 180px; }
}

@media (min-width: 768px) {
    body.layout-3 .stg-service-card { width: 200px; }
}

body.layout-3 .stg-service-img {
    aspect-ratio: 1;
    background: var(--stg-dark-3);
    border: 1px solid #2a2a2a;
    overflow: hidden;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

body.layout-3 .stg-service-card:hover .stg-service-img {
    border-color: var(--stg-red);
}

body.layout-3 .stg-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

body.layout-3 .stg-service-card:hover .stg-service-img img {
    opacity: 0.8;
}

body.layout-3 .stg-service-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stg-red);
    font-size: 48px;
}

body.layout-3 .stg-service-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ccc;
    text-align: center;
    transition: color 0.2s;
}

body.layout-3 .stg-service-card:hover .stg-service-name {
    color: var(--stg-white);
}

body.layout-3 .stg-service-divider {
    text-align: center;
    margin-top: 4px;
    color: var(--stg-red);
    font-size: 11px;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
body.layout-3 .stg-testimonials-section {
    background: #f5f5f5;
    padding: 64px 16px;
}

body.layout-3 .stg-testimonials-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 300;
    color: #aaa;
    text-align: center;
    margin-bottom: 48px;
}

body.layout-3 .stg-testimonial-card {
    background: var(--stg-white);
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

body.layout-3 .stg-testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

body.layout-3 .stg-star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--stg-red);
    font-size: 13px;
}

body.layout-3 .stg-testimonial-quote {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

body.layout-3 .stg-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

body.layout-3 .stg-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--stg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stg-white);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

body.layout-3 .stg-testimonial-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--stg-dark);
    margin-bottom: 2px;
}

body.layout-3 .stg-testimonial-company {
    font-size: 11px;
    color: #999;
}

/* ── Blog Section ───────────────────────────────────────────────────────── */
body.layout-3 .stg-blog-section {
    background: var(--stg-white);
    padding: 56px 16px 64px;
}

body.layout-3 .stg-blog-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

body.layout-3 .stg-blog-title-line::before,
body.layout-3 .stg-blog-title-line::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #ccc;
}

body.layout-3 .stg-blog-card {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

body.layout-3 .stg-blog-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

body.layout-3 .stg-blog-img {
    height: 180px;
    overflow: hidden;
}

body.layout-3 .stg-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

body.layout-3 .stg-blog-card:hover .stg-blog-img img {
    transform: scale(1.05);
}

body.layout-3 .stg-blog-body {
    padding: 20px;
}

body.layout-3 .stg-blog-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--stg-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.2s;
}

body.layout-3 .stg-blog-card:hover .stg-blog-card-title {
    color: var(--stg-red);
}

body.layout-3 .stg-blog-card-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
body.layout-3 .stg-cta-section {
    background: var(--stg-red);
    padding: 56px 16px;
    position: relative;
    overflow: hidden;
}

body.layout-3 .stg-cta-deco {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 180px;
    line-height: 1;
    color: rgba(255,255,255,0.07);
    pointer-events: none;
    user-select: none;
}

body.layout-3 .stg-cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--stg-white);
    margin-bottom: 8px;
}

body.layout-3 .stg-cta-sub {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

body.layout-3 .stg-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--stg-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

body.layout-3 .stg-cta-link:hover {
    opacity: 0.85;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
body.layout-3 .stg-footer {
    background: var(--stg-dark);
    color: #aaa;
    padding: 64px 16px;
    border-top: 3px solid var(--stg-red);
}

body.layout-3 .stg-footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--stg-white);
    margin-bottom: 20px;
}

body.layout-3 .stg-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
}

body.layout-3 .stg-footer-link {
    display: block;
    font-size: 13px;
    color: #aaa;
    padding: 4px 0;
    transition: color 0.2s, padding-left 0.2s;
}

body.layout-3 .stg-footer-link:hover {
    color: var(--stg-white);
    padding-left: 4px;
}

body.layout-3 .stg-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 14px;
}

body.layout-3 .stg-footer-contact-item i {
    color: var(--stg-red);
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

body.layout-3 .stg-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--stg-white);
    transition: background 0.2s;
    line-height: 1;
}

body.layout-3 .stg-footer-social:hover {
    background: var(--stg-red);
}

body.layout-3 .stg-footer-newsletter-form {
    display: flex;
    margin-top: 20px;
}

body.layout-3 .stg-footer-newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    font-size: 13px;
    color: var(--stg-white);
    outline: none;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.2s;
}

body.layout-3 .stg-footer-newsletter-input::placeholder {
    color: #666;
}

body.layout-3 .stg-footer-newsletter-input:focus {
    border-color: var(--stg-red);
}

body.layout-3 .stg-footer-newsletter-btn {
    padding: 10px 14px;
    background: var(--stg-red);
    border: none;
    color: var(--stg-white);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}

body.layout-3 .stg-footer-newsletter-btn:hover {
    background: var(--stg-red-dark);
}

/* ── Footer copyright bar ───────────────────────────────────────────────── */
body.layout-3 .stg-footer-bottom {
    background: var(--stg-dark-2);
    padding: 20px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

body.layout-3 .stg-footer-copy {
    font-size: 12px;
    color: #666;
}

body.layout-3 .stg-footer-bottom-link {
    font-size: 12px;
    color: #666;
    transition: color 0.2s;
}

body.layout-3 .stg-footer-bottom-link:hover {
    color: var(--stg-white);
}

/* ── Grid helpers ───────────────────────────────────────────────────────── */
body.layout-3 .stg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.layout-3 .stg-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
body.layout-3 .stg-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

@media (max-width: 767px) {
    body.layout-3 .stg-grid-2,
    body.layout-3 .stg-grid-3,
    body.layout-3 .stg-grid-4 { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    body.layout-3 .stg-grid-3,
    body.layout-3 .stg-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile menu ────────────────────────────────────────────────────────── */
body.layout-3 .stg-mobile-menu {
    background: var(--stg-dark-2);
    border-top: 1px solid rgba(255,255,255,0.08);
}

body.layout-3 .stg-mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s, background 0.2s;
}

body.layout-3 .stg-mobile-menu-link:hover,
body.layout-3 .stg-mobile-menu-link.active {
    color: var(--stg-white);
    background: rgba(255,255,255,0.04);
}

body.layout-3 .stg-mobile-menu-link.active {
    border-left: 3px solid var(--stg-red);
    padding-left: 13px;
}

/* ── Inner page: page banner ────────────────────────────────────────────── */
body.layout-3 .stg-page-banner {
    background: var(--stg-dark-2);
    padding: 48px 16px 40px;
    position: relative;
    overflow: hidden;
}

body.layout-3 .stg-page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(235,29,49,0.15) 0%, transparent 60%);
    pointer-events: none;
}

body.layout-3 .stg-page-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    color: var(--stg-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

body.layout-3 .stg-page-banner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

body.layout-3 .stg-page-banner .breadcrumb a {
    color: #888;
    transition: color 0.2s;
}

body.layout-3 .stg-page-banner .breadcrumb a:hover {
    color: var(--stg-white);
}

/* ── Inner page: section wrappers ───────────────────────────────────────── */
body.layout-3 .stg-content-section {
    padding: 64px 16px;
    background: var(--stg-white);
}

body.layout-3 .stg-content-section-alt {
    padding: 64px 16px;
    background: #f8f8f8;
}

/* ── Inner page: card styles ────────────────────────────────────────────── */
body.layout-3 .stg-card {
    background: var(--stg-white);
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}

body.layout-3 .stg-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--stg-red);
}

body.layout-3 .stg-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

body.layout-3 .stg-card-body {
    padding: 20px;
}

body.layout-3 .stg-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--stg-dark);
    margin-bottom: 8px;
}

body.layout-3 .stg-card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

body.layout-3 .stg-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--stg-red);
}

/* ── Responsive: container ──────────────────────────────────────────────── */
body.layout-3 .stg-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 576px) {
    body.layout-3 .stg-container { padding-left: 24px; padding-right: 24px; }
}

@media (min-width: 1024px) {
    body.layout-3 .stg-container { padding-left: 32px; padding-right: 32px; }
}

/* ── Scroll Animation (already in app.blade.php, just reinforced) ───────── */
body.layout-3 .hp-anim { opacity: 1; }
body.layout-3.animations-on .hp-anim:not(.hp-anim--in) { opacity: 0; }
body.layout-3.animations-on .hp-anim--in { opacity: 1; transition: opacity .6s ease, transform .6s ease; transform: none; }

/* ── Floating WhatsApp button ───────────────────────────────────────────── */
body.layout-3 .stg-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stg-white);
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

body.layout-3 .stg-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
body.layout-3 .stg-faq-item {
    border-bottom: 1px solid #e8e8e8;
}

body.layout-3 .stg-faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--stg-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}

body.layout-3 .stg-faq-question:hover {
    color: var(--stg-red);
}

body.layout-3 .stg-faq-answer {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    padding-bottom: 16px;
}

/* ── Services inner page ────────────────────────────────────────────────── */
body.layout-3 .stg-service-list-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

body.layout-3 .stg-service-list-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: var(--stg-red);
}

body.layout-3 .stg-service-list-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

body.layout-3 .stg-service-list-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.layout-3 .stg-service-list-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--stg-dark);
}

body.layout-3 .stg-service-list-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

body.layout-3 .stg-service-list-card a.stg-btn {
    align-self: flex-start;
}

/* ── Breadcrumbs override (hide spacer for layout-3) ────────────────────── */
body.layout-3 .breadcrumbs-spacer {
    display: none;
}
