
* {
    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 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.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 .tagline {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 300;
    color: #b8c6db;
}

.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 {
    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; }

.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-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;
}

.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); }

.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 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: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dropdown-menu::-webkit-scrollbar { width: 4px; }
.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255,107,53,0.6);
    border-radius: 2px;
}
.dropdown-menu { scrollbar-width: thin; scrollbar-color: rgba(255,107,53,0.6) rgba(255,255,255,0.05); }

.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 {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-glass {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    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-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.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);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    padding: 1rem 2rem;
    border: 2px solid #dc2626;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.glass-section {

    border-radius: 30px;
    padding: 5rem 3rem;
    margin: 4rem auto;
    max-width: 1400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.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;
    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: 2.5rem;
}

.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;
    margin-top: 1.5rem;
}

.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 {
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    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;
}

.testimonial-strip {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(40, 40, 40, 0.5);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
}

.confidentiality-section {
    border-radius: 30px;
    padding: 4rem 3rem;
    margin: 4rem auto;
    max-width: 1200px;
    text-align: center;
}

.confidentiality-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.confidentiality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.confidentiality-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.confidentiality-feature i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.confidentiality-feature h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.confidentiality-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.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;
}

.faq-section {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin: 4rem auto;
    max-width: 1400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.faq-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    background: rgba(40, 40, 40, 0.4);
}

.faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 1.8rem 2rem;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        color: white;
        font-size: 1.05rem;
        font-weight: 600;
        transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--primary-orange);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.8rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: 0.98rem;
}

.faq-answer ul {
    margin: 0.8rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-answer ul li {
    margin: 0.3rem 0;
}
/* 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 */
.results-gallery-section {
background: rgba(15, 15, 15, 0.4);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-top: 1px solid rgba(255, 255, 255, 0.08);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
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;
}
.case-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;
}
.case-row-img-right { grid-template-columns: 1fr 260px; }
.case-row-img-left  { grid-template-columns: 260px 1fr; }
#case-studies { opacity: 1 !important; transform: none !important; }

@media (max-width: 640px) {
.case-row-img-right,
.case-row-img-left {
    grid-template-columns: 1fr;
}
.case-row img {
    max-width: 260px;
    margin: 0 auto;
}
.case-row-img-left img {
    order: 2;
}
}
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .step-card {
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 107, 53, 0.4);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .step-card h3 {
        color: #ff6b35;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .step-card p {
        color: #a0a0a0;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .steps-grid {
            grid-template-columns: 1fr;
        }
    }
    /* CTA Section */
    .cta-section {
        border-radius: 30px;
        padding: 5rem 3rem;
        margin: 4rem auto;
        max-width: 1200px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .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;
    }

    .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;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .service-card {
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 107, 53, 0.4);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .service-card h3 {
        color: #ff6b35;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        color: #a0a0a0;
        line-height: 1.7;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-card ul {
        list-style: none;
        padding: 0;
    }

    .service-card ul li {
        color: #a0a0a0;
        font-size: 0.9rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
        position: relative;
    }

    .service-card ul li::before {
        content: "✓";
        color: #ff6b35;
        position: absolute;
        left: 0;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
    }
.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;
}

/* 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;
}
/* 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 */
}
}

@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-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 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; }

    .testimonial-strip { grid-template-columns: 1fr; }

    .confidentiality-features { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; padding: 0 15px; }

    .faq-section { padding: 3rem 2rem; margin: 2rem 1rem; }
    .faq-container { margin-top: 2rem; }
    .faq-question { padding: 1.5rem 1.5rem; font-size: 1rem; }
    .faq-answer { padding: 0 1.5rem; }
    .faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .glass-section { padding: 2rem 1.5rem; }
    .faq-question { padding: 1.2rem 1rem; font-size: 0.95rem; }
    .faq-answer p { font-size: 0.9rem; }
}
