:root {
    --color-primary: #c62828;
    --color-primary-dark: #b71c1c;
    --color-accent: #f9a825;
    --color-accent-light: #ffca28;
    --color-accent-orange: #ff8f00;
    --color-dark: #1a1a2e;
    --color-text: #333333;
    --color-muted: #666666;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 20px;
    --nav-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    padding-top: var(--nav-height);
}

h1, h2, h3, h4, h5, h6, .section-title, .page-hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-primary-dark); }

/* Buttons */
.btn-primary, .btn-cta {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: .03em;
    padding: .65rem 1.5rem;
    border-radius: 8px;
    transition: all .25s;
}
.btn-primary:hover, .btn-cta:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(198,40,40,.35);
}
.btn-outline-accent {
    border: 2px solid var(--color-accent);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    padding: .65rem 1.5rem;
}
.btn-outline-accent:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
}

/* Navigation */
.site-nav {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: .75rem 0;
    transition: all .3s;
}
.site-nav.scrolled {
    box-shadow: var(--shadow-md);
    padding: .5rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-main { font-family: var(--font-heading); font-weight: 700; font-size: .95rem; color: var(--color-dark); }
.brand-sub { font-size: .72rem; color: var(--color-muted); letter-spacing: .05em; text-transform: uppercase; }
.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .9rem;
    color: var(--color-text) !important;
    padding: .5rem 1rem !important;
    position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--color-primary) !important; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}
.site-nav-toggle {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 8px;
    padding: .4rem .6rem;
    font-size: 1.5rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section-light { background: var(--color-white); }
.section-gray { background: var(--color-light); }
.section-accent-bg {
    background: linear-gradient(180deg, #fffbf0 0%, #fff8e1 100%);
}
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-accent-orange);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
}
.section-tagline { font-weight: 500; color: var(--color-muted); margin-bottom: 1rem; }
.section-intro { max-width: 640px; color: var(--color-muted); }

/* Hero */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8e1 0%, #fff 50%, #fce4ec 100%);
    padding: 2rem 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3.2fr);
    gap: 2.5rem;
    align-items: stretch;
    /* Fits: label + 3-line title + 2-line subtitle + 2-line description + buttons + padding */
    height: clamp(540px, 58vh, 580px);
}
.hero-welcome-col,
.hero-slider-col {
    min-width: 0;
    height: 100%;
}

/* Animated glow borders */
.hero-glow-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 3px;
    height: 100%;
    overflow: hidden;
}
.hero-glow-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220%;
    height: 220%;
    transform: translate(-50%, -50%);
    animation: heroGlowSpin 5s linear infinite;
    z-index: 0;
}
.hero-glow-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

/* Orange glow — welcome text */
.hero-glow-frame--orange {
    box-shadow:
        0 0 18px rgba(249, 168, 37, 0.35),
        0 0 36px rgba(255, 143, 0, 0.18);
}
.hero-glow-frame--orange::before {
    background: conic-gradient(
        from 0deg,
        #ffca28,
        #f9a825,
        #ff8f00,
        #ffb300,
        #fff3cd,
        #ff8f00,
        #f9a825,
        #ffca28
    );
}
.hero-glow-frame--orange::after {
    animation: heroGlowPulseOrange 3s ease-in-out infinite;
}
.hero-glow-frame--red::after {
    animation: heroGlowPulseRed 3s ease-in-out infinite;
}

/* Red glow — image slider */
.hero-glow-frame--red {
    box-shadow:
        0 0 20px rgba(198, 40, 40, 0.45),
        0 0 40px rgba(183, 28, 28, 0.25);
}
.hero-glow-frame--red::before {
    background: conic-gradient(
        from 0deg,
        #ef5350,
        #c62828,
        #b71c1c,
        #ff5252,
        #ffcdd2,
        #d32f2f,
        #c62828,
        #ef5350
    );
}

@keyframes heroGlowSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes heroGlowPulseOrange {
    0%, 100% { box-shadow: inset 0 0 16px rgba(255, 167, 38, 0.2); }
    50% { box-shadow: inset 0 0 28px rgba(255, 193, 7, 0.45); }
}
@keyframes heroGlowPulseRed {
    0%, 100% { box-shadow: inset 0 0 16px rgba(198, 40, 40, 0.25); }
    50% { box-shadow: inset 0 0 32px rgba(229, 57, 53, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-glow-frame::before,
    .hero-glow-frame::after { animation: none; }
}

.hero-glow-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: calc(var(--radius-lg) - 3px);
    overflow: hidden;
}
.hero-welcome-inner {
    background: var(--color-white);
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.hero-welcome-col {
    display: flex;
    flex-direction: column;
}
.hero-welcome-panels {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}
.hero-welcome-panel {
    display: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding-right: 0.25rem;
}
.hero-welcome-panel.is-active {
    display: flex;
    flex-direction: column;
    animation: heroWelcomeIn .5s ease;
}
.hero-welcome-panel .section-label {
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.hero-actions {
    flex-shrink: 0;
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
@keyframes heroWelcomeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-title {
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    line-height: 1.25;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.hero-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 4px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.hero-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.hero-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.hero-slider-col {
    display: flex;
    flex-direction: column;
}
.hero-slider-panel {
    position: relative;
    background: var(--color-dark);
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 100%;
}
.hero-slider-stage {
    position: absolute;
    inset: 0;
}
.hero-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}
.hero-slide-item.is-active {
    opacity: 1;
    z-index: 1;
}
.hero-slide-item picture,
.hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slide-item picture {
    position: absolute;
    inset: 0;
}
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all .2s;
}
.hero-slider-arrow:hover {
    background: var(--color-primary);
    color: #fff;
}
.hero-slider-prev { left: 1rem; }
.hero-slider-next { right: 1rem; }
.hero-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .5rem;
}
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}
.hero-slider-dot.active {
    background: var(--color-accent);
    transform: scale(1.15);
}

.consultation-form-glow {
    height: auto;
}
.consultation-form-card,
.hero-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border-top: 4px solid var(--color-accent);
}
.consultation-form-glow .consultation-form-card {
    border-radius: calc(var(--radius-lg) - 3px);
    border-top: none;
    box-shadow: none;
    overflow: visible;
}
.consultation-form-header,
.hero-form-header { text-align: center; margin-bottom: 1.5rem; }
.consultation-form-header .zodiac-icon,
.hero-form-header .zodiac-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark);
}
.consultation-form-header h3,
.hero-form-header h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.consultation-form-header p,
.hero-form-header p { font-size: .9rem; color: var(--color-muted); margin: 0; }

/* About — main content (modern) */
.about-content-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 50%, #fff8f0 100%);
    padding: 5.5rem 0;
}
.about-content-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 20%, rgba(249, 168, 37, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 92% 80%, rgba(198, 40, 40, 0.08) 0%, transparent 40%);
}
.about-content-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}
.about-content-title {
    margin-bottom: 1rem;
    max-width: 18ch;
}
.about-content-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-accent-orange);
    max-width: 52ch;
}
.about-content-body {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--color-text);
}
.about-content-body p:last-child {
    margin-bottom: 0;
}
.about-content-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.about-content-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}
.about-content-highlight i {
    color: var(--color-accent-orange);
    font-size: 1.1rem;
}
.about-content-image-wrap {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
.about-content-glow {
    height: auto;
    width: 100%;
}
.about-content-glow .hero-glow-inner {
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 420px;
    background: #fff;
}
.about-content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 992px) {
    .about-content-section .row {
        align-items: stretch;
    }
    .about-content-image-wrap {
        margin-left: auto;
        margin-right: 0;
        display: flex;
        align-items: stretch;
        justify-content: flex-end;
        height: 100%;
        min-height: 480px;
    }
    .about-content-glow {
        height: 100%;
        min-height: 480px;
    }
    .about-content-glow .hero-glow-inner {
        height: 100%;
        min-height: 480px;
        aspect-ratio: auto;
    }
}

/* About (legacy) */
.about-image-wrap { position: relative; }
.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: var(--radius);
    z-index: -1;
}

/* Home — Our Services (modern) */
.home-services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 45%, #fff5f5 100%);
    padding: 5.5rem 0;
}
.home-services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(249, 168, 37, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 92% 88%, rgba(198, 40, 40, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, transparent 0%, rgba(255, 202, 40, 0.06) 50%, transparent 100%);
}
.home-services-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}
.home-services-title {
    margin-bottom: 0;
    max-width: 16ch;
}
.home-services-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-accent);
}
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.home-service-card {
    position: relative;
    border-radius: 20px;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-service-card-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.45), rgba(198, 40, 40, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.65;
    transition: opacity 0.35s ease;
}
.home-service-card-body {
    position: relative;
    z-index: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s ease, background 0.35s ease;
}
.home-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.home-service-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(249, 168, 37, 0.35);
    letter-spacing: 0.05em;
}
.home-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--color-primary) 0%, #e53935 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}
.home-service-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin: 0 0 1.25rem;
    flex: 1;
}
.home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}
.home-service-link i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}
.home-service-card:hover {
    transform: translateY(-6px);
}
.home-service-card:hover .home-service-card-border {
    opacity: 1;
}
.home-service-card:hover .home-service-card-body {
    background: #fff;
    box-shadow: 0 16px 40px rgba(198, 40, 40, 0.12);
}
.home-service-card:hover .home-service-icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(198, 40, 40, 0.35);
}
.home-service-card:hover .home-service-link {
    color: var(--color-primary-dark);
    gap: 0.75rem;
}
.home-service-card:hover .home-service-link i {
    transform: translate(2px, -2px);
}
.home-services-footer {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.home-services-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}
.home-services-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}
.home-services-trust-item i {
    color: var(--color-accent-orange);
    font-size: 1.15rem;
}
.home-services-cta-btn {
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.25);
}

/* Legacy service cards (unused on home; kept for compatibility) */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.04);
    transition: all .3s;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-light);
}
.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-primary), #e53935);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}
.service-card h4 { font-size: 1.05rem; margin-bottom: .75rem; }
.service-card p { font-size: .9rem; color: var(--color-muted); margin: 0; }

/* Home — How It Works (modern) */
.home-process-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%, #fff8f0 100%);
    padding: 5.5rem 0;
}
.home-process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 85%, rgba(198, 40, 40, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(249, 168, 37, 0.12) 0%, transparent 42%);
}
.home-process-title {
    margin-bottom: 0;
    max-width: 14ch;
}
.home-process-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-primary);
}
.home-process-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    position: relative;
}
.home-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0.5rem;
}
.home-process-line {
    position: absolute;
    top: 2.35rem;
    left: calc(50% + 2rem);
    width: calc(100% - 1rem);
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: 3px;
    opacity: 0.45;
    z-index: 0;
}
.home-process-node {
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}
.home-process-num {
    position: absolute;
    top: -0.35rem;
    right: -0.75rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--color-primary);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.35);
}
.home-process-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff 0%, #fff8e1 100%);
    border: 3px solid rgba(249, 168, 37, 0.55);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.home-process-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    width: 100%;
    min-height: 140px;
    border: 1px solid rgba(26, 26, 46, 0.06);
    box-shadow: 0 8px 28px rgba(26, 26, 46, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.home-process-step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.home-process-step-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin: 0;
}
.home-process-step:hover .home-process-icon {
    transform: scale(1.08);
    border-color: var(--color-primary);
    box-shadow: 0 14px 36px rgba(198, 40, 40, 0.18);
}
.home-process-step:hover .home-process-card {
    transform: translateY(-5px);
    border-color: rgba(249, 168, 37, 0.35);
    box-shadow: 0 16px 40px rgba(198, 40, 40, 0.1);
}
.home-process-footer {
    margin-top: 3.5rem;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a42 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.15);
}
.home-process-footer-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin: 0;
    max-width: 520px;
}

/* Legacy process cards */
.process-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    transition: transform .3s;
}
.process-card:hover { transform: translateY(-3px); }
.process-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent-orange);
    opacity: .5;
    margin-bottom: .5rem;
}
.process-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-card p { font-size: .9rem; color: var(--color-muted); margin: 0; }

/* Home — Client Stories (modern) */
.home-testimonials-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 40%, #fff5f5 100%);
    padding: 5.5rem 0;
}
.home-testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 20%, rgba(249, 168, 37, 0.16) 0%, transparent 40%),
        radial-gradient(circle at 90% 75%, rgba(198, 40, 40, 0.1) 0%, transparent 42%);
}
.home-testimonials-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}
.home-testimonials-title {
    margin-bottom: 0;
    max-width: 15ch;
}
.home-testimonials-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-accent-orange);
}
.home-testimonials-viewport {
    overflow: hidden;
    margin: 0 -0.25rem;
    padding: 0.25rem;
}
.home-testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.home-testimonial-card {
    position: relative;
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    border-radius: 20px;
    transition: transform 0.35s ease;
}
.home-testimonial-card-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.5), rgba(198, 40, 40, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    transition: opacity 0.35s ease;
}
.home-testimonial-card-body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.07);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}
.home-testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}
.home-testimonial-quote-icon {
    font-size: 2.25rem;
    line-height: 1;
    color: rgba(249, 168, 37, 0.22);
}
.home-testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.5rem;
    flex: 1;
    font-style: normal;
}
.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(26, 26, 46, 0.07);
}
.home-testimonial-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--color-primary) 0%, #e53935 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(198, 40, 40, 0.25);
}
.home-testimonial-meta {
    flex: 1;
    min-width: 0;
}
.home-testimonial-meta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0.15rem;
}
.home-testimonial-meta span {
    display: block;
    font-size: 0.82rem;
    color: var(--color-muted);
}
.home-testimonial-verified {
    flex-shrink: 0;
    color: var(--color-accent-orange);
    font-size: 1.15rem;
}
.home-testimonial-card:hover {
    transform: translateY(-5px);
}
.home-testimonial-card:hover .home-testimonial-card-border {
    opacity: 1;
}
.home-testimonial-card:hover .home-testimonial-card-body {
    background: #fff;
    box-shadow: 0 16px 40px rgba(198, 40, 40, 0.1);
}
.home-testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}
.home-testimonials-nav {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 2px solid rgba(198, 40, 40, 0.2);
    background: #fff;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(26, 26, 46, 0.06);
}
.home-testimonials-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.28);
}
.home-testimonials-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 12px;
}
.home-testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(198, 40, 40, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}
.home-testimonials-dot.is-active {
    width: 28px;
    background: var(--color-primary);
}
.home-testimonials-footer {
    margin-top: 3.5rem;
    padding: 2rem 2.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.18);
}
.home-testimonials-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}
.home-testimonials-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-accent-orange);
    line-height: 1.1;
}
.home-testimonials-stat span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.2rem;
}
.home-testimonials-footer .btn {
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.35);
}

/* Legacy testimonial slider (unused on home) */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
    display: flex;
    transition: transform .5s ease;
}
.testimonial-card {
    flex: 0 0 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 0;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.testimonial-stars { color: var(--color-accent); margin-bottom: 1rem; font-size: .9rem; }
.testimonial-stars i { margin: 0 2px; }
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: var(--color-text); margin-bottom: 1.5rem; }
.testimonial-card footer strong { display: block; font-family: var(--font-heading); }
.testimonial-card footer span { font-size: .85rem; color: var(--color-muted); }
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.5rem;
}
.testimonial-prev, .testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    transition: all .2s;
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Home — Gallery (modern) */
.home-gallery-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 45%, #fff8f0 100%);
    padding: 5.5rem 0;
}
.home-gallery-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 88% 18%, rgba(198, 40, 40, 0.09) 0%, transparent 40%),
        radial-gradient(circle at 12% 82%, rgba(249, 168, 37, 0.14) 0%, transparent 42%);
}
.home-gallery-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 88%);
}
.home-gallery-title {
    margin-bottom: 0;
    max-width: 14ch;
}
.home-gallery-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-primary);
}
.home-gallery-grid {
    column-count: 1;
    column-gap: 1.25rem;
    width: 100%;
}
@media (min-width: 576px) {
    .home-gallery-grid {
        column-count: 2;
    }
}
@media (min-width: 992px) {
    .home-gallery-grid {
        column-count: 4;
        column-gap: 1.25rem;
    }
}
.home-gallery-item {
    position: relative;
    margin: 0 0 1.25rem;
    border-radius: 20px;
    width: 100%;
    display: inline-block;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    box-sizing: border-box;
    cursor: pointer;
    vertical-align: top;
}
.home-gallery-card-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.5), rgba(198, 40, 40, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    transition: opacity 0.35s ease;
    z-index: 2;
    pointer-events: none;
}
.home-gallery-card-body {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(26, 26, 46, 0.08);
}
.home-gallery-card-body img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(26, 26, 46, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.home-gallery-zoom {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.25s ease, transform 0.25s ease;
}
.home-gallery-item:hover .home-gallery-card-border {
    opacity: 1;
}
.home-gallery-item:hover .home-gallery-card-body img {
    transform: scale(1.04);
}
.home-gallery-item:hover .home-gallery-overlay {
    opacity: 1;
}
.home-gallery-item:hover .home-gallery-zoom {
    background: var(--color-primary);
    transform: scale(1.05);
}

/* Legacy gallery grid (compatibility) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-grid .gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    margin: 0;
}
.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.05); }
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 4.5rem;
}
.gallery-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.gallery-lightbox img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.gallery-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}
.gallery-lightbox-prev { left: 1.25rem; }
.gallery-lightbox-next { right: 1.25rem; }
.gallery-lightbox-nav[hidden] {
    display: none;
}

/* Blog */
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body time { font-size: .8rem; color: var(--color-muted); }
.blog-card-body h2, .blog-card-body h3 { font-size: 1.1rem; margin: .5rem 0; }
.blog-card-body h2 a, .blog-card-body h3 a { color: var(--color-dark); }
.blog-card-body h2 a:hover, .blog-card-body h3 a:hover { color: var(--color-primary); }
.blog-card-body p { font-size: .9rem; color: var(--color-muted); flex: 1; }
.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .85rem;
    color: var(--color-primary);
    margin-top: .75rem;
}

/* Blog listing page — accent border cards */
.blog-list-section .blog-card {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, #f9a825 0%, #ff8f00 45%, #c62828 100%);
    border-radius: 20px;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-list-section .blog-card-surface {
    position: relative;
    z-index: 1;
    height: 100%;
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px rgba(26, 26, 46, 0.06);
    transition: box-shadow 0.35s ease;
}
.blog-list-section .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.18);
}
.blog-list-section .blog-card:hover .blog-card-surface {
    box-shadow: 0 16px 40px rgba(198, 40, 40, 0.1);
}

.blog-post-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: calc(var(--nav-height) + 3rem);
}
.blog-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(0,0,0,.75));
}
.blog-post-hero-content { position: relative; z-index: 1; color: #fff; }
.blog-post-hero-content h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
.blog-post-excerpt { font-size: 1.15rem; color: var(--color-muted); border-left: 4px solid var(--color-accent); padding-left: 1rem; }
.blog-post-content p { margin-bottom: 1rem; }
.blog-post-footer { display: flex; flex-wrap: wrap; gap: 1rem; }

/* CTA section */
.section-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d44 100%);
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,168,37,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-text { color: rgba(255,255,255,.8); }
.cta-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* Page hero */
.page-hero {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: var(--nav-height);
    overflow: hidden;
}
.page-hero-sm { min-height: 280px; }
.page-hero-gradient {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 202, 40, 0.28) 0%, transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(198, 40, 40, 0.45) 0%, transparent 44%),
        radial-gradient(circle at 72% 22%, rgba(249, 168, 37, 0.18) 0%, transparent 36%),
        linear-gradient(135deg, #1a1a2e 0%, #3d1f35 38%, #8e1f2f 72%, #c62828 100%);
}
.page-hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
    pointer-events: none;
}
.page-hero-gradient::after {
    content: '';
    position: absolute;
    inset: auto -10% -40% auto;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.22) 0%, transparent 68%);
    pointer-events: none;
}
.page-hero-gradient .section-label {
    color: var(--color-accent-light);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,.85) 0%, rgba(198,40,40,.6) 100%);
}
.page-hero-content { position: relative; z-index: 1; color: #fff; padding: 3rem 0; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; color: #fff; }
.page-hero-subtitle { font-size: 1.1rem; opacity: .92; max-width: 640px; color: rgba(255, 255, 255, 0.9); }

/* Services page — service cards (modern) */
.services-cards-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 45%, #fff8f0 100%);
    padding: 5.5rem 0;
}
.services-cards-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 18%, rgba(249, 168, 37, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 90% 82%, rgba(198, 40, 40, 0.08) 0%, transparent 40%);
}
.services-cards-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}
.services-cards-title {
    margin-bottom: 0;
    line-height: 1.15;
}
.services-cards-header {
    margin-top: 2.5rem;
}
.services-cards-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-accent-orange);
}
.services-cards-lead-glow {
    max-width: 880px;
    margin: 0 auto 2.75rem;
    height: auto;
}
.services-cards-lead-inner {
    position: relative;
    height: auto;
    padding: 2rem 2rem 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.97) 0%, rgba(255, 255, 255, 0.99) 100%);
}
.services-cards-lead-icon {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(249, 168, 37, 0.18);
    pointer-events: none;
}
.services-cards-lead {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    text-align: left;
}
.services-cards-lead p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--color-text);
    margin: 0;
}
.services-cards-lead p::first-line {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.01em;
}
.services-cards-lead p:last-child {
    margin-bottom: 0;
}
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.75rem;
}
.services-page-card {
    position: relative;
    border-radius: 18px;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.services-page-card-body {
    height: 100%;
    background: linear-gradient(145deg, #1a1a2e 0%, #252538 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(26, 26, 46, 0.16);
    display: flex;
    flex-direction: column;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.services-page-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.services-page-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-page-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(26, 26, 46, 0.75) 100%);
    pointer-events: none;
}
.services-page-card-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 1;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(249, 168, 37, 0.15);
    backdrop-filter: blur(6px);
    color: var(--color-accent-orange);
    border: 1px solid rgba(249, 168, 37, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.services-page-card-content {
    padding: 1.5rem 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.services-page-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.services-page-card-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    flex: 1;
}
.services-page-card:hover {
    transform: translateY(-6px);
}
.services-page-card:hover .services-page-card-body {
    border-color: rgba(249, 168, 37, 0.35);
    box-shadow: 0 20px 48px rgba(198, 40, 40, 0.22);
}
.services-page-card:hover .services-page-card-media img {
    transform: scale(1.06);
}
.services-page-card:hover .services-page-card-icon {
    background: linear-gradient(145deg, var(--color-accent-orange) 0%, #ff8f00 100%);
    color: #1a1a2e;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.35);
}

/* Service detail (legacy) */
.service-detail-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform .3s;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}
.service-detail-body { padding: 2rem 1.5rem 1.5rem; }
.service-detail-body h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.service-detail-body p { font-size: .9rem; color: var(--color-muted); margin: 0; }

/* About — Our Values (modern) */
.about-values-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 45%, #fff5f5 100%);
    padding: 5.5rem 0;
}
.about-values-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 15%, rgba(198, 40, 40, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 88% 85%, rgba(249, 168, 37, 0.14) 0%, transparent 42%);
}
.about-values-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}
.about-values-title {
    margin-bottom: 0;
    max-width: 14ch;
}
.about-values-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-primary);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.about-value-card {
    position: relative;
    border-radius: 18px;
    min-height: 100%;
    background: linear-gradient(145deg, #1a1a2e 0%, #252538 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 32px rgba(26, 26, 46, 0.18);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about-value-card-body {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.about-value-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(249, 168, 37, 0.12);
    color: var(--color-accent-orange);
    border: 1px solid rgba(249, 168, 37, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.about-value-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.about-value-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    flex: 1;
}
.about-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 168, 37, 0.4);
    box-shadow: 0 20px 48px rgba(198, 40, 40, 0.22);
}
.about-value-card:hover .about-value-icon-wrap {
    background: linear-gradient(145deg, var(--color-accent-orange) 0%, #ff8f00 100%);
    color: #1a1a2e;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.35);
}

/* Value cards (legacy) */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-dark);
}

/* Contact */
.contact-info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-info-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-info-list li i {
    width: 40px;
    height: 40px;
    background: #fff8e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
    flex-shrink: 0;
}
.contact-info-list strong { display: block; font-family: var(--font-heading); font-size: .9rem; }
.contact-info-list p { margin: 0; font-size: .9rem; color: var(--color-muted); }

/* Page inquiry — contact & services form sections */
.page-inquiry-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 50%, #fff8f0 100%);
    padding: 5.5rem 0;
}
.page-inquiry-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 22%, rgba(249, 168, 37, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 92% 78%, rgba(198, 40, 40, 0.08) 0%, transparent 40%);
}
.page-inquiry-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}
.page-inquiry-title {
    margin-bottom: 1rem;
    max-width: 16ch;
}
.page-inquiry-intro {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0 0 1.5rem;
    max-width: 42ch;
}
.page-inquiry-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.page-inquiry-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
}
.page-inquiry-highlight i {
    color: var(--color-accent-orange);
    font-size: 1.1rem;
}
.page-inquiry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.page-inquiry-actions .btn {
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
}
.page-inquiry-note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 1.5rem 0 0;
    max-width: 42ch;
}
.page-inquiry-social {
    margin-top: 1.25rem;
}
.page-inquiry-form-glow {
    height: auto;
}
.page-inquiry-form-inner {
    padding: 2rem 1.75rem;
    border-top: none;
    box-shadow: none;
}
.page-inquiry-form-glow .consultation-form-card {
    border-top: none;
    box-shadow: none;
}
.page-inquiry-form-header {
    text-align: left;
    margin-bottom: 1.5rem;
}
.page-inquiry-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}
.page-inquiry-form-header p {
    font-size: 0.92rem;
    color: var(--color-muted);
    margin: 0;
}
.inquiry-form-submit-row .btn-cta {
    min-height: calc(1.5em + 0.75rem + 2px + 1rem);
}
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 26, 46, 0.07);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(26, 26, 46, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-card:hover {
    border-color: rgba(249, 168, 37, 0.35);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.08);
}
.contact-info-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(145deg, #fff8e1 0%, #ffecb3 100%);
    color: var(--color-accent-orange);
    border: 1px solid rgba(249, 168, 37, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    margin-bottom: 0.15rem;
    color: var(--color-dark);
}
.contact-info-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.5;
}
.contact-info-card a {
    color: var(--color-primary);
}
.contact-info-card a:hover {
    color: var(--color-primary-dark);
}

/* Contact page — Google Maps */
.contact-map-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 55%, #f8f9fb 100%);
    padding: 5rem 0;
}
.contact-map-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 20%, rgba(249, 168, 37, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 88% 80%, rgba(198, 40, 40, 0.08) 0%, transparent 40%);
}
.contact-map-header {
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.contact-map-title {
    margin-bottom: 0.75rem;
}
.contact-map-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-muted);
    margin: 0 auto;
    max-width: 640px;
}
.contact-map-glow {
    max-width: 1080px;
    margin: 0 auto;
    height: auto;
}
.contact-map-inner {
    height: auto;
    padding: 0.85rem;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.97) 0%, rgba(255, 255, 255, 0.99) 100%);
}
.contact-map-frame {
    position: relative;
    width: 100%;
    min-height: 420px;
    height: clamp(320px, 52vw, 480px);
    border-radius: 14px;
    overflow: hidden;
    background: #eef1f5;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 46, 0.06);
}
.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
}

/* Forms */
.inquiry-form .form-label { font-family: var(--font-heading); font-size: .85rem; font-weight: 600; }
.inquiry-form .form-control, .inquiry-form .form-select {
    border-radius: 8px;
    border-color: #dee2e6;
    padding: .6rem .85rem;
}
.inquiry-form .form-control:focus, .inquiry-form .form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 .2rem rgba(249,168,37,.2);
}
.captcha-question {
    background: #fff8e1;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
}
.form-alert { border-radius: 8px; padding: .75rem 1rem; font-size: .9rem; }

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,.8);
    padding: 4rem 0 0;
}
.footer-brand { margin-bottom: 1rem; }
.footer-brand .brand-main { color: #fff; font-family: var(--font-heading); font-weight: 700; display: block; }
.footer-brand .brand-sub { color: var(--color-accent); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-text { font-size: .9rem; opacity: .8; }
.site-footer h5 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; font-size: .9rem; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    font-size: .9rem;
}
.footer-contact i { color: var(--color-accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-text { flex: 1; min-width: 0; line-height: 1.55; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: .85rem;
    opacity: .6;
}
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s;
}
.social-links a:hover { background: var(--color-primary); color: #fff; }

/* Floating actions */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-md);
    transition: transform .2s;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-phone { background: var(--color-primary); }
.float-whatsapp { background: #25d366; }

/* Modal */
.contact-modal .modal-content { border-radius: var(--radius-lg); border: none; }
.contact-modal .modal-header {
    background: linear-gradient(135deg, var(--color-primary), #e53935);
    color: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact-modal .btn-close { filter: invert(1); }

.content-body p { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }
    .hero-section { min-height: auto; padding: 2rem 0; }
    .hero-welcome-col {
        height: auto;
    }
    .hero-welcome-col.hero-glow-frame,
    .hero-welcome-col .hero-glow-inner,
    .hero-welcome-inner {
        height: auto;
    }
    .hero-welcome-panels {
        flex: 0 1 auto;
        min-height: auto;
        overflow: visible;
    }
    .hero-welcome-panel {
        position: relative;
        inset: auto;
        overflow: visible;
    }
    .hero-welcome-panel .section-label,
    .hero-title,
    .hero-lead,
    .hero-text {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }
    .hero-title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
        line-height: 1.3;
    }
    .hero-slider-col {
        height: clamp(280px, 52vw, 400px);
    }
    .hero-slide-item picture,
    .hero-slide-item img {
        object-fit: cover;
        object-position: center top;
    }
    .hero-welcome-inner { padding: 1.5rem 1.25rem 1.25rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .home-gallery-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
    }
    .about-content-section { padding: 3.5rem 0; }
    .page-inquiry-section { padding: 3.5rem 0; }
    .page-inquiry-title { max-width: none; }
    .page-inquiry-intro { max-width: none; }
    .page-inquiry-form-inner { padding: 1.5rem 1.25rem; }
    .contact-map-section { padding: 3.5rem 0; }
    .contact-map-frame {
        min-height: 280px;
        height: 320px;
    }
    .about-content-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.25rem;
        max-width: none;
    }
    .about-content-image-wrap {
        max-width: 340px;
        margin: 0 auto;
    }
    .about-content-glow .hero-glow-inner {
        min-height: 360px;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .about-values-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
    }
    .services-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.25rem;
    }
    .services-cards-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
    }
    .home-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-services-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
    }
    .home-services-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.25rem;
    }
    .home-process-line { display: none; }
    .home-process-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
    }
    .home-process-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem 1.5rem;
    }
    .home-testimonial-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
    .home-testimonials-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
    }
    .home-testimonials-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem 1.5rem;
    }
}
@media (max-width: 575.98px) {
    .section { padding: 3.5rem 0; }
    .home-services-section { padding: 3.5rem 0; }
    .home-services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .home-services-trust { flex-direction: column; gap: 0.85rem; }
    .home-services-cta-btn { width: 100%; }
    .home-process-track { grid-template-columns: 1fr; }
    .home-process-footer .btn { width: 100%; }
    .home-testimonials-section { padding: 3.5rem 0; }
    .home-testimonial-card { flex: 0 0 100%; }
    .home-testimonials-stats { flex-direction: column; gap: 1rem; }
    .home-testimonials-footer .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .home-gallery-section { padding: 3.5rem 0; }
    .gallery-lightbox {
        padding: 1rem 3.25rem;
    }
    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
    .gallery-lightbox-prev { left: 0.5rem; }
    .gallery-lightbox-next { right: 0.5rem; }
    .gallery-lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .about-content-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }
    .about-content-image-wrap {
        max-width: 300px;
    }
    .about-content-glow .hero-glow-inner {
        min-height: 320px;
    }
    .about-values-section { padding: 3.5rem 0; }
    .about-values-grid { grid-template-columns: 1fr; }
    .services-cards-section { padding: 3.5rem 0; }
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-cards-lead-glow {
        margin-bottom: 2rem;
    }
    .services-cards-lead-inner {
        padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    }
    .services-cards-lead-icon {
        font-size: 2.75rem;
        top: 0.75rem;
        right: 0.85rem;
    }
    .floating-actions { bottom: 16px; right: 16px; }
    .float-btn { width: 46px; height: 46px; }
}
