    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-red: #dc2626;
        --primary-orange: #ff6b35;
        --glass-bg: rgba(10, 10, 10, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --accent-gradient: linear-gradient(135deg, #ff6b35, #dc2626);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--text-primary);
        background: #000;
        overflow-x: hidden;
    }

    body.no-scroll { overflow: hidden; }

    /* Fixed Background */
    .master-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
                    url('../images/p300-background.webp') center/cover;
        filter: brightness(0.6);
    }

    /* Container System */
    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles - Exact match from services.html */
    .header {
        background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        backdrop-filter: blur(10px);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        background: linear-gradient(135deg, #ff6b35, #f9ca24);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo h1 a {
        text-decoration: none;
        color: inherit;
    }

    .logo .tagline {
        font-size: 0.85rem;
        opacity: 0.9;
        font-weight: 300;
        color: #b8c6db;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Drawer overlay */
    .drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, visibility .25s ease;
        z-index: 999;
    }

    .drawer-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .dropdown {
        position: relative;
    }

    /* Side drawer menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 320px;
        max-width: min(86vw, 420px);
        background: linear-gradient(135deg, #0f2027, #203a43);
        color: #fff;
        padding: calc(16px + env(safe-area-inset-top)) 18px 24px;
        transform: translateX(-100%);
        transition: transform .28s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 2px 0 30px rgba(0,0,0,.35);
        border-right: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    /* Drawer header */
    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 2px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        margin-bottom: 8px;
        position: sticky;
        top: 0;
        background: linear-gradient(135deg, #0f2027, #203a43);
        z-index: 1;
    }
    .nearby-links-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .nearby-link {
        background: rgba(255,107,53,0.08);
        border: 1px solid rgba(255,107,53,0.3);
        border-radius: 25px;
        padding: 0.5rem 1.2rem;
        color: #ff6b35;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        display: inline-block;
    }
    .nearby-link:hover {
        background: rgba(255,107,53,0.2);
        border-color: #ff6b35;
    }
    .drawer-title {
        font-weight: 700;
        letter-spacing: .3px;
        color: #e5efff;
    }

    .drawer-close {
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 1.6rem;
        line-height: 1;
        padding: 4px 8px;
        cursor: pointer;
        border-radius: 8px;
    }

    .drawer-close:hover {
        background: rgba(255,255,255,0.08);
    }

    /* Menu links */
    .nav-menu li {
        list-style: none;
    }

    .nav-menu > li > a,
    .nav-menu > li > .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .6rem;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 12px 10px;
        border-radius: 10px;
        transition: background .2s ease, transform .2s ease;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > .dropdown-toggle:hover {
        background: rgba(255,255,255,0.08);
        transform: translateX(2px);
    }

    .nav-menu > li > a.active {
        background: rgba(255,255,255,0.1);
        border-left: 3px solid #ff6b35;
    }

    .nav-menu a.btn-primary {
        background: linear-gradient(135deg, #ff6b35, #ff8c42);
        color: #fff;
        padding: 12px 16px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        margin-top: 6px;
    }

    .dropdown-toggle {
        cursor: pointer;
    }

    .dropdown-toggle::after {
        content: '▸';
        font-size: .9rem;
        opacity: .9;
        transition: transform .2s ease;
        margin-left: .2rem;
    }

    .dropdown.open .dropdown-toggle::after {
        transform: rotate(90deg);
    }

    .dropdown-menu {
        overflow: hidden;
        max-height: 0;
        transition: max-height .25s ease;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        margin: 4px 0 8px;
    }

    .dropdown.open .dropdown-menu {
        max-height: 70vh;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 12px;
        color: #f7fafc;
        text-decoration: none;
        font-weight: 500;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .dropdown-menu a:first-child {
        border-top: 0;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.08);
    }

    .nav-menu a::after { display: none !important; }

    /* Main Content */
    .main-content {
        position: relative;
        z-index: 1;
        padding-top: 80px;
    }

    /* Button Styles */
    .btn-primary {
        background: linear-gradient(135deg, #ff6b35, #ff8c42);
        color: white !important;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 2rem;
        position: relative;
    }

    .hero-glass {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 30px;
        padding: 2rem 3rem;
        max-width: 1200px;
        margin: 0 auto;
        box-shadow: none;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #fff, #ff6b35, #dc2626);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.3rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
        font-weight: 300;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
.hero-section + .glass-section {
margin-top: 0;
padding-top: 1.5rem;
}
.glass-section {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border: none;
border-radius: 30px;
padding: 3rem 3rem;
margin: 2rem auto;
max-width: 1400px;
box-shadow: none;
}

    .section-title {
        font-size: 3.2rem;
        font-weight: 800;
        text-align: center;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

.service-content {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: start;
margin-bottom: 0;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

    .service-info {
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid var(--glass-border);
        padding: 3rem 2.5rem;
        border-radius: 25px;
        position: relative;
        overflow: hidden;
    }

    .service-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--accent-gradient);
    }

    .service-info h3 {
        font-size: 2rem;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        font-weight: 700;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-info p {
        margin-bottom: 2rem;
        color: var(--text-secondary);
        font-size: 1.1rem;
        line-height: 1.8;
    }

.service-info ul {
list-style: none;
margin-bottom: 1rem;
}

    .service-info li {
        padding: 0.8rem 0;
        position: relative;
        padding-left: 2rem;
        color: var(--text-secondary);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .service-info li:hover {
        color: var(--text-primary);
        transform: translateX(5px);
    }

    .service-info li::before {
        content: "▸";
        position: absolute;
        left: 0;
        color: var(--primary-orange);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .pricing {
        background: rgba(255, 107, 53, 0.1);
        border: 2px solid var(--primary-orange);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .pricing h4 {
        color: var(--primary-orange);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .pricing p {
        color: var(--text-secondary);
        font-weight: 500;
        margin: 0;
    }

    .service-features {

        padding: 2.5rem;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .service-features:hover {
        transform: translateY(-10px);
        background: rgba(40, 40, 40, 0.4);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    }

    .service-features h4 {
        color: var(--primary-orange);
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
        font-weight: 700;
        text-align: center;
    }

    .service-features ul {
        list-style: none;
    }

    .service-features li {
        padding: 0.8rem 0;
        position: relative;
        padding-left: 2rem;
        color: var(--text-secondary);
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .service-features li:last-child {
        border-bottom: none;
    }

    .service-features li:hover {
        color: var(--text-primary);
        background: rgba(255, 107, 53, 0.05);
        transform: translateX(5px);
    }

    .service-features li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-orange);
        font-weight: bold;
        font-size: 1.1rem;
        width: 20px;
        height: 20px;
        background: rgba(255, 107, 53, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Process Section */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .step {
        text-align: center;
        padding: 3rem 2rem;
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--accent-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .step:hover::before {
        transform: scaleX(1);
    }

    .step:hover {
        transform: translateY(-15px);
        background: rgba(40, 40, 40, 0.4);
        box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
    }

    .step-number {
        width: 80px;
        height: 80px;
        background: var(--accent-gradient);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 800;
        margin: 0 auto 2rem;
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        position: relative;
    }

    .step h3 {
        color: var(--primary-orange);
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .step p {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 1rem;
    }

    /* FAQ Section */
    .faq-section {
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 30px;
        padding: 4rem 3rem;
        margin: 4rem auto;
        max-width: 1400px;
        box-shadow: none;
    }

    .faq-section h2 {
        text-align: center;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 3rem;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .faq-item {
        background: transparent;
        backdrop-filter: none;
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 15px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        background: rgba(255,107,53,0.04);
        border-color: var(--primary-orange);
    }
    .faq-item summary {
        padding: 1.5rem 2rem;
        cursor: pointer;
        font-weight: 600;
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.02);
        transition: all 0.3s ease;
        list-style: none;
    }

    .faq-item summary:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .faq-item summary h3 {
        color: var(--primary-orange);
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0;
        display: inline;
    }

    .faq-item p {
        padding: 0 2rem 1.5rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0;
    }

    /* CTA Section */
    .cta-section {
        border-radius: 30px;
        padding: 5rem 3rem;
        margin: 4rem auto;
        max-width: 1200px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
/* Case Study Bolt Section */
.blog-bolt-section {
max-width: 900px;
margin: 0 auto 1rem;
padding: 2rem 2rem;
}
.blog-bolt-title {
font-size: 2rem;
font-weight: 800;
text-align: center;
background: linear-gradient(135deg, #ff6b35, #dc2626);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.8rem;
}
.blog-bolt-subtitle {
text-align: center;
font-size: 1rem;
color: #a0a0a0;
margin-bottom: 2.5rem;
max-width: 680px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
}
.blog-bolt-rows {
display: flex;
flex-direction: column;
gap: 1.8rem;
}
.blog-bolt-row {
display: grid;
gap: 1.5rem;
align-items: center;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 14px;
padding: 1.5rem;
text-decoration: none;
transition: border-color 0.25s, box-shadow 0.25s;
}
.blog-bolt-row:hover {
border-color: rgba(255,107,53,0.4);
box-shadow: 0 6px 24px rgba(255,107,53,0.1);
}
.blog-bolt-row.img-right { grid-template-columns: 1fr 220px; }
.blog-bolt-row.img-left  { grid-template-columns: 220px 1fr; }
.blog-bolt-row img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.1);
display: block;
}
.blog-bolt-kicker {
font-size: 0.78rem;
color: #ff6b35;
font-weight: 700;
margin-bottom: 0.4rem;
letter-spacing: 0.03em;
}
.blog-bolt-row h3 {
font-size: 1.05rem;
font-weight: 700;
color: #fff;
margin-bottom: 0.6rem;
line-height: 1.4;
}
.blog-bolt-row p {
color: #a0a0a0;
font-size: 0.9rem;
line-height: 1.7;
margin-bottom: 0.8rem;
}
.blog-bolt-read {
color: #ff6b35;
font-weight: 600;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 0.35rem;
}
.blog-bolt-read::after {
content: '→';
transition: transform 0.2s;
}
.blog-bolt-row:hover .blog-bolt-read::after {
transform: translateX(4px);
}
@media (max-width: 640px) {
.blog-bolt-row.img-right,
.blog-bolt-row.img-left {
    grid-template-columns: 1fr;
}
.blog-bolt-row img {
    max-width: 240px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}
.blog-bolt-row.img-left img { order: 2; }
.blog-bolt-row.img-left .blog-bolt-text { order: 1; }
.blog-bolt-title { font-size: 1.6rem; }
}

/* Blog Scroll Section */
.blog-scroll-section {
padding: 2.5rem 0;
margin: 1rem auto;
max-width: 1400px;
}
.blog-scroll-track {
display: flex;
gap: 1.2rem;
overflow-x: auto;
padding: 1rem 20px 1.5rem;
scroll-snap-type: x mandatory;
scrollbar-width: none;
-ms-overflow-style: none;
scroll-behavior: smooth;
}
.blog-scroll-track::-webkit-scrollbar { display: none; }
.blog-scroll-card {
flex: 0 0 260px;
scroll-snap-align: center;
background: rgba(30, 30, 30, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 14px;
padding: 1.4rem;
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
gap: 0.6rem;
transition: all 0.3s ease;
}
.blog-scroll-card:hover {
transform: translateY(-6px);
border-color: var(--primary-orange);
box-shadow: 0 12px 30px rgba(220, 38, 38, 0.15);
background: rgba(40, 40, 40, 0.8);
}
.blog-scroll-tag {
display: inline-block;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 0.25rem 0.6rem;
border-radius: 6px;
width: fit-content;
}
.blog-scroll-tag.relationship { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.blog-scroll-tag.technology  { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.blog-scroll-tag.research    { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.blog-scroll-tag.practical   { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.blog-scroll-card h3 {
font-size: 0.95rem;
font-weight: 700;
color: var(--text-primary);
line-height: 1.35;
}
.blog-scroll-card p {
font-size: 0.8rem;
color: var(--text-secondary);
line-height: 1.5;
flex-grow: 1;
}
.blog-scroll-meta {
font-size: 0.72rem;
color: rgba(255, 255, 255, 0.35);
display: flex;
justify-content: space-between;
border-top: 1px solid rgba(255, 255, 255, 0.06);
padding-top: 0.5rem;
margin-top: auto;
}
    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        font-size: 3.2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        font-size: 1.3rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    /* Quick Quote Button */
    .quick-quote {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        opacity: 0;
        transform: translateY(100px);
        animation: slideUp 0.8s ease forwards 2s;
    }

    @keyframes slideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .quote-button {
        background: var(--accent-gradient);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .quote-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    }

    .quote-button::before {
        content: "💬";
        font-size: 1.2rem;
    }

    /* Footer - Exact match from services.html */
    .footer {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: white;
        padding: 60px 0 30px;
        position: relative;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        color: #ff6b35;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p {
        margin-bottom: 0.8rem;
        opacity: 0.9;
        line-height: 1.6;
        color: #cbd5e1;
        font-size: 0.85rem;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        color: #cbd5e1;
        text-decoration: none;
        opacity: 0.9;
        transition: all 0.3s ease;
        display: inline-block;
        font-weight: 500;
        font-size: 0.8rem;
    }

    .footer-section a:hover {
        opacity: 1;
        color: #ff6b35;
        transform: translateX(3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #374151;
        opacity: 0.8;
        max-width: 1400px;
        margin: 0 auto;
        font-size: 0.8rem;
        color: #94a3b8;
        padding-left: 20px;
        padding-right: 20px;
    }
/* Reviews summary tweaks (first new section) */
.reviews-summary-section .reviews-summary-card {
margin-top: 1.5rem;
}

.reviews-summary-section .reviews-reasons-card ul li {
font-size: 0.98rem;
}

/* Make the gallery track work for reviews as well */
.reviews-track {
/* Re-use base .gallery-track styles – this just ensures spacing matches */
padding-bottom: 1.5rem;
}

/* Review cards inside the horizontal scroller */
.review-card {
background: rgba(20, 20, 20, 0.85);
border-radius: 18px;
border: 1px solid rgba(255, 255, 255, 0.08);
min-height: 230px;
}

.review-card .gallery-caption {
padding: 1.6rem 1.7rem 1.8rem;
}

.review-card h3 {
font-size: 1.05rem;
margin-bottom: 0.75rem;
}

.review-card p {
font-size: 0.95rem;
line-height: 1.7;
}

/* Star rating badge */
.review-rating {
padding: 0.6rem 1rem 0;
font-size: 1.1rem;
color: #facc15;
text-align: right;
}

/* “View all reviews” button under carousel */
.reviews-all-link-wrapper {
text-align: center;
margin-top: 2rem;
}

.reviews-all-link {
font-size: 0.95rem;
padding: 0.9rem 1.8rem;
}
.results-gallery-section {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border-top: none;
border-bottom: none;
padding: 5rem 0;
margin: 4rem 0;
position: relative;
overflow: hidden;
}

.gallery-scroll-container {
position: relative;
width: 100%;
padding: 20px 0;
}

.gallery-track {
display: flex;
gap: 2rem;
overflow-x: auto;
padding: 2rem 20px;
scroll-snap-type: x mandatory;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
display: none; /* Chrome/Safari/Webkit */
}

.gallery-item {
flex: 0 0 auto;
width: 320px;
scroll-snap-align: center;
perspective: 1000px;
}

.gallery-card {
background: rgba(30, 30, 30, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
height: 100%;
display: flex;
flex-direction: column;
}

.gallery-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
border-color: var(--primary-orange);
background: rgba(40, 40, 40, 0.8);
}

.gallery-card img {
width: 100%;
height: 400px; /* Portrait aspect ratio for documents */
object-fit: cover;
object-position: top center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.5s ease;
cursor: pointer; /* Suggests it can be clicked/viewed */
}

.gallery-card:hover img {
filter: brightness(1.1);
}

.gallery-caption {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.gallery-caption h3 {
color: var(--primary-orange);
font-size: 1.2rem;
margin-bottom: 0.5rem;
font-weight: 700;
}

.gallery-caption p {
color: #cbd5e1;
font-size: 0.9rem;
line-height: 1.5;
margin: 0;
}

/* Controls */
.gallery-controls {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 1rem;
}

.scroll-btn {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}

.scroll-btn:hover {
background: var(--primary-orange);
border-color: var(--primary-orange);
transform: scale(1.1);
}

.scroll-instruction {
color: var(--text-secondary);
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 0.5rem;
opacity: 0.7;
}

    /* Quick Quote Button */
    .quick-quote {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        opacity: 0;
        transform: translateY(100px);
        animation: slideUp 0.8s ease forwards 2s;
    }

    .comparison-image-wrap {
        text-align: center;
        margin-top: 2rem;
    }

    .comparison-image {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
    }

    .comparison-image:hover {
        transform: scale(1.015);
        border-color: #ff6b35;
    }

    .image-caption {
        font-size: 0.95rem;
        color: #cbd5e1;
        margin-top: 1rem;
        font-style: italic;
        opacity: 0.85;
    }
    /* ── Question Builder ── */
    .qbuilder-wrap {
        max-width: 700px;
        margin: 0 auto;
    }
    .qbuilder-textarea {
        width: 100%;
        min-height: 120px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 12px;
        color: #fff;
        font-size: 1rem;
        font-family: Inter, sans-serif;
        padding: 1rem;
        resize: vertical;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }
    .qbuilder-textarea:focus {
        outline: none;
        border-color: #ff6b35;
    }
    .qbuilder-textarea::placeholder { color: #666; }
    .qbuilder-btn {
        margin-top: 1rem;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #ff6b35, #dc2626);
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: opacity 0.2s;
    }
    .qbuilder-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .qbuilder-results {
        margin-top: 1.5rem;
        display: none;
    }
    .qbuilder-results.visible { display: block; }
    .qbuilder-question {
        background: rgba(34,197,94,0.07);
        border: 1px solid rgba(34,197,94,0.3);
        border-radius: 12px;
        padding: 1.1rem 1.4rem;
        margin-bottom: 0.75rem;
        color: #fff;
        font-size: 1rem;
        line-height: 1.5;
    }
    .qbuilder-question span {
        display: block;
        color: #22c55e;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.3rem;
    }
    .qbuilder-loading {
        text-align: center;
        color: #888;
        padding: 1.5rem;
        display: none;
    }
    .qbuilder-loading.visible { display: block; }
    .qbuilder-cta {
        margin-top: 1.5rem;
        background: rgba(255,107,53,0.08);
        border: 1px solid rgba(255,107,53,0.3);
        border-radius: 12px;
        padding: 1.25rem;
        text-align: center;
        display: none;
    }
    .qbuilder-cta.visible { display: block; }
    .qbuilder-cta p {
        color: #ccc;
        margin: 0 0 1rem;
        font-size: 0.95rem;
    }
    .qbuilder-disclaimer {
        margin-top: 1rem;
        color: #555;
        font-size: 0.78rem;
        text-align: center;
    }
.breadcrumb {
    padding: 0.8rem 20px;
    font-size: 0.85rem;
    color: #888;
    max-width: 1400px;
    margin: 0 auto;
}
.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    margin: 0 0.4rem;
    color: #555;
}

.site-logo {
font-size: 1.8rem;
font-weight: 700;
line-height: 1;
margin-bottom: 0.25rem;
}

.site-logo a {
text-decoration: none;
background: linear-gradient(135deg, #ff6b35, #f9ca24);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
.gallery-item {
    width: 280px;
}

.gallery-card img {
    height: 350px;
}

.scroll-btn {
    display: none; /* Hide buttons on mobile, swipe is intuitive */
}
}

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .container { padding: 0 20px; }
        
        .hero-section { padding: 120px 0 80px; }
        .hero-glass { padding: 3rem 2rem; }
        .hero-content h1 { font-size: 2.8rem; line-height: 1.2; }
        .hero-content p { font-size: 1.1rem; }
        
        .glass-section { padding: 3rem 2rem; margin: 2rem 1rem; }
        .section-title { font-size: 2.2rem; }
        .section-subtitle { font-size: 1rem; }
        
        .service-info, .service-features { padding: 2rem 1.5rem; }
        
        .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
        .step { padding: 2rem 1.5rem; }
        .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
        
        .footer-content { grid-template-columns: 1fr; text-align: center; padding: 0 15px; }
        
        .quick-quote { bottom: 20px; right: 20px; }
        .quote-button { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    }

    @media (max-width: 480px) {
        .hero-content h1 { font-size: 2.2rem; }
        .section-title { font-size: 1.8rem; }
        .glass-section { padding: 2rem 1.5rem; }
        .service-info h3 { font-size: 1.6rem; }
        .step-number { width: 50px; height: 50px; font-size: 1.2rem; }
    }

    /* High-resolution displays */
    @media (min-width: 1400px) {
        .container { max-width: 1600px; }
        .hero-content h1 { font-size: 4rem; }
        .section-title { font-size: 3.5rem; }
    }

