/* Self-hosted fonts */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-variable.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #1a365d;
    --primary-dark: #0f2744;
    --accent: #2c5282;
    --gold: #d69e2e;
    --light: #f7fafc;
    --text: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --border: #e2e8f0;
}

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

.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 6px 6px;
    z-index: 1001;
    text-decoration: none;
    font-weight: 600;
}

.skip-nav:focus {
    top: 0;
}

section[id] {
    scroll-margin-top: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 20px;
    height: 20px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-phone {
    color: var(--primary) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

.mobile-phone-btn {
    display: none;
    color: var(--primary);
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.85) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.webp') center/cover no-repeat;
    animation: kenBurns 25s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-urgency {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.btn-primary:hover {
    background: #b7791f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 3rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.badge {
    padding: 1rem;
}

.badge-icon {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.badge-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.badge h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.badge p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(26, 54, 93, 0.1);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.75;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--gold);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.about-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.75;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(214, 158, 46, 0.5); }
}

.btn-pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .about-container,
    .contact-container,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        height: 300px;
    }

    .footer-top {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-phone-btn {
        display: block;
    }
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 1rem 2rem 2rem;
        gap: 0;
        animation: slideDown 0.3s ease;
    }

    .nav-links.active li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-links.active li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-links.active .nav-cta {
        text-align: center;
        display: block;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--white);
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.5rem;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 2px;
    background: #e2e8f0;
}

.step h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 4rem 2rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    color: var(--white);
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: var(--light);
}

.testimonials-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .testimonial-card blockquote {
    flex: 1;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq {
    padding: 6rem 2rem;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    /* max-height set dynamically via JS for accurate sizing */
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.3s;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* Accreditation Strip */
.accreditations {
    background: var(--light);
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.accreditations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.accreditation-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.accreditation-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
    gap: 0.75rem;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.sticky-cta-call {
    background: var(--primary);
    color: var(--white);
}

.sticky-cta-quote {
    background: var(--gold);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .sticky-cta.visible {
        display: flex;
    }

    .back-to-top {
        bottom: 5rem;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Form success message */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive additions for new sections */
@media (max-width: 768px) {
    .step:not(:last-child)::after {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional responsive breakpoints */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .badge {
        padding: 1.25rem 0.75rem;
    }

    .badge h3 {
        font-size: 0.95rem;
    }

    .badge p {
        font-size: 0.8rem;
    }

    .about-features li {
        font-size: 0.9rem;
    }

    .director-avatar {
        width: 90px;
        height: 90px;
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .badges-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        order: -1;
    }
}

/* ═══════════════════════════════════════
   Service Landing Pages
   ═══════════════════════════════════════ */

.service-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.85) 100%), var(--hero-image, none) center/cover no-repeat;
    padding: 10rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

/* service-hero ::before pattern removed - real photo backgrounds replace it */

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-hero .breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.service-hero .breadcrumb a:hover {
    color: rgba(255,255,255,0.9);
}

.service-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-body {
    padding: 5rem 2rem;
    background: var(--white);
}

.service-body-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-body h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.service-body h2:first-child {
    margin-top: 0;
}

.service-body p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.service-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

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

.service-feature {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.service-feature h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-cta-section {
    background: var(--light);
    padding: 5rem 2rem;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-cta-section p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.service-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-faq {
    padding: 5rem 2rem;
    background: var(--white);
}

.other-services {
    padding: 5rem 2rem;
    background: var(--light);
}

.other-services .section-header {
    margin-bottom: 2rem;
}

.other-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.other-service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.other-service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.other-service-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.other-service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   Blog & Content Pages
   ═══════════════════════════════════════ */

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 9rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    color: rgba(255,255,255,0.9);
}

/* Blog Index */
.blog-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-card {
    display: block;
    text-decoration: none;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-card:first-child {
    padding-top: 0;
}

.blog-card:hover h2 {
    color: var(--accent);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card h2 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.blog-card p {
    color: var(--text);
    line-height: 1.6;
}

/* Blog Article */
.article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.article-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.article-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.article-content li {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.article-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--light);
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    color: var(--text);
    margin-bottom: 0;
    font-style: italic;
}

.article-cta {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
    border-left: 3px solid var(--gold);
}

.article-cta h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.legal-content li {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--gold);
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.problem-content > p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.problem-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.problem-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

@media (max-width: 576px) {
    .problem-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mid-page CTA Banner */
.mid-cta {
    padding: 3.5rem 2rem;
    background: var(--light);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mid-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.mid-cta h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.mid-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mid-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Latest Blog Posts on Homepage */
.latest-posts {
    padding: 5rem 2rem;
    background: var(--light);
}

.latest-posts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.latest-posts-grid .blog-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.latest-posts-grid .blog-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.latest-posts-grid .blog-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.latest-posts-grid .blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Director Profile */
.director-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.director-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.director-image {
    flex-shrink: 0;
}

.director-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
}

.director-content h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.director-content h3 {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.director-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.director-content blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 0 0 1.25rem 0;
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
}

.director-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.director-linkedin:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .director-container {
        flex-direction: column;
        text-align: center;
    }

    .director-content blockquote {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding-left: 0;
        padding-top: 1.25rem;
    }
}

/* Technology Partners Carousel */
.partners-section {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.25rem;
}

.partners-ticker {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 50s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    opacity: 0.3;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 0.7;
}

.partner-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partner-logo {
        font-size: 0.95rem;
    }

    .partners-track {
        gap: 2rem;
        animation-duration: 35s;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 5.5rem;
        left: 1rem;
        width: 48px;
        height: 48px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.25rem 2rem;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-banner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--primary-dark);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 576px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* Sticky Service Nav */
.service-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    z-index: 999;
    padding: 0.6rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.service-nav.visible {
    transform: translateY(0);
}

.service-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.service-nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s;
}

.service-nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.service-nav-link.active {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .service-nav {
        padding: 0.5rem 1rem;
    }
}

/* Inline Form on Service Pages */
.inline-form {
    max-width: 700px;
    margin: 0 auto;
}

.inline-form-fields {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.inline-form-fields input {
    flex: 1;
    min-width: 180px;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.inline-form-fields input:focus {
    outline: none;
    border-color: var(--primary);
}

.inline-form-fields button {
    min-width: 160px;
}

.inline-form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

@media (max-width: 576px) {
    .inline-form-fields {
        flex-direction: column;
    }

    .inline-form-fields input,
    .inline-form-fields button {
        width: 100%;
    }
}
