:root {
    --primary-color: #1a365d;
    --accent-color: #ff6b35;
    --gradient: linear-gradient(135deg, #1a365d 0%, #0f172a 100%);
    --font-headline: 'Poppins', sans-serif;
    --font-base: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-base);
    color: #1f2933;
    background-color: #f8fafc;
}

.top-bar {
    background: var(--primary-color);
    font-size: 0.875rem;
}

.top-bar a {
    color: #ffffffcc;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.top-bar a:hover,
.top-bar a:focus {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    padding: 1rem 0;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.35);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1080;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.navbar {
    padding: 1rem 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.navbar-brand {
    font-size: 1.125rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    gap: 0.5rem;
}

.navbar-brand .brand-highlight {
    color: var(--accent-color);
}

.brand-logo {
    height: 64px;
    width: auto;
}

.brand-text {
    font-size: 1.55rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1a365d 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contact-links {
    row-gap: 0.5rem;
}

@media (max-width: 575.98px) {
    .top-bar .container {
        align-items: stretch !important;
    }

    .top-bar-tagline {
        font-size: 0.82rem;
    }

    .contact-links {
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .contact-links a {
        font-size: 0.82rem;
    }
}

.footer-brand .brand-logo {
    height: 56px;
}

.footer-brand-text {
    font-size: 1.35rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 107, 53, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: #1f2933;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
    position: relative;
    font-weight: 600;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -0.35rem;
    height: 3px;
    border-radius: 999px;
    background: var(--accent-color);
}

main {
    background: #f8fafc;
}

.btn-accent {
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
    background: #ff824f;
    color: #fff;
}

.hero {
    background: var(--gradient);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-pattern.svg') center/cover no-repeat;
    opacity: 0.4;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-visual img {
    min-height: 320px;
    object-fit: cover;
}

.hero-visual-card {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    border-radius: 1.25rem;
    background: #fff;
    max-width: 240px;
}

.hero .badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-free-note {
    font-size: 0.95rem;
    max-width: 380px;
}

.section-title {
    font-family: var(--font-headline);
    font-weight: 600;
    color: var(--primary-color);
}

.stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.card,
.faq-item {
    border-radius: 1rem;
}

.service-icon {
    color: var(--primary-color);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(26, 54, 93, 0.08);
}

.process-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.process-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.process-order {
    display: inline-block;
    font-weight: 600;
    color: rgba(26, 54, 93, 0.45);
    letter-spacing: 0.1em;
}

.breadcrumb {
    --bs-breadcrumb-divider: '>';
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb .breadcrumb-item.active {
    color: #475569;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.footer {
    background: #0f172a;
    font-size: 0.95rem;
}

.footer a {
    color: #94a3c2;
}

.footer a:hover,
.footer a:focus {
    color: #fff;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.before-after-card img.card-img-top {
    border-radius: 0.75rem;
    height: 160px;
    object-fit: cover;
    width: 100%;
}

.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-height: 210px;
    display: flex;
    flex-direction: column;
}

.faq-item h6 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.faq-label.question {
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
}

.faq-label.answer {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
    margin-top: 0.15rem;
}

.faq-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
    margin: 0.35rem 0 1rem;
}

.faq-item p {
    color: #475569;
    margin: 0;
    margin-top: auto;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--accent-color);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.language-switcher {
    display: inline-flex;
    gap: 0.5rem;
}

.language-switcher .lang-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.15rem 0.65rem;
    transition: all 0.2s ease;
}

.language-switcher .lang-link:hover,
.language-switcher .lang-link:focus {
    color: #fff;
    border-color: #fff;
}

.language-switcher .lang-link.active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: transparent;
}

.service-hero {
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(26, 54, 93, 0.12));
}

.service-hero > .container,
.service-hero .card {
    position: relative;
    z-index: 1;
}

.service-hero .card {
    border-radius: 1.5rem;
}

.service-hero .card img {
    object-fit: cover;
}

.service-hero .badge {
    font-weight: 600;
    letter-spacing: 0.02em;
}

article + article {
    margin-top: 2.5rem;
}

article p {
    line-height: 1.7;
    color: #475569;
}

article ul li,
article ol li {
    margin-bottom: 0.35rem;
}

.service-hero .p-3 {
    border-radius: 1rem;
}

.service-summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #475569;
    min-height: 3.2rem;
}

.service-badge {
    min-height: 1.75rem;
    display: flex;
    align-items: flex-start;
}

.service-badge .badge {
    margin: 0;
}

.service-badge .badge-placeholder {
    visibility: hidden;
    display: inline-block;
    padding: 0.35rem 0.75rem;
}

.before-after-feature {
    background: #f8fafc;
}

.before-after-slider {
    position: relative;
    --slider-position: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.before-after-media {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.before-after-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.before-after-media .before {
    filter: grayscale(12%) saturate(0.9);
}

.before-after-media .after {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.15s ease;
}

.before-after-media .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-range {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(26, 54, 93, 0.15);
    outline: none;
}

.before-after-range::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.15);
    cursor: pointer;
}

.before-after-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.15);
    cursor: pointer;
}

.before-after-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.before-after-info .btn-link {
    align-self: flex-start;
}

.before-after-label {
    position: absolute;
    top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    pointer-events: none;
}

.before-after-label.before {
    left: 14px;
}

.before-after-label.after {
    right: 14px;
}

.before-after-mini-list .mini-case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.before-after-mini-list .mini-case-link:hover,
.before-after-mini-list .mini-case-link:focus {
    background: rgba(26, 54, 93, 0.12);
    color: var(--primary-color);
}

.before-after-gallery .before-after-card {
    border-radius: 1.5rem;
    overflow: hidden;
}

.before-after-gallery .before-after-slider {
    margin: 0;
}

.before-after-gallery .card-body {
    padding: 1.75rem;
}

.before-after-gallery .card-body p {
    color: #475569;
}

.testimonial-summary {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between;
}

.testimonial-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-score .score-value {
    font-size: 3.75rem;
    font-family: var(--font-headline);
    font-weight: 600;
    line-height: 1;
}

.testimonial-score .score-text {
    font-size: 1rem;
    color: #64748b;
}

.testimonial-stat-list {
    display: grid;
    gap: 0.9rem;
}

.testimonial-stat-list li {
    padding: 0.9rem 1.2rem;
    background: rgba(26, 54, 93, 0.06);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-stat-list .stat-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-stat-list .stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-carousel {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 2.5rem 2.5rem 3.75rem;
    overflow: hidden;
    min-height: 320px;
}

.testimonial-carousel.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.testimonial-slide-wrapper {
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-slide-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92), rgba(26, 54, 93, 0.7));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-procedure {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-stars {
    color: #ffb300;
    font-size: 1rem;
}

.testimonial-slide-quote {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #1f2933;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.testimonial-arrow.prev {
    left: 1.5rem;
}

.testimonial-arrow.next {
    right: 1.5rem;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    outline: none;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    padding: 0;
}

.testimonial-dot.is-active {
    background: var(--accent-color);
    transform: scale(1.35);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.testimonial-faq-row {
    row-gap: 2.5rem;
}

@media (max-width: 991.98px) {
    .testimonial-summary {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-carousel {
        padding: 2rem 1.75rem 3.75rem;
    }
}

@media (max-width: 575.98px) {
    .testimonial-slide-quote {
        font-size: 1rem;
    }

    .testimonial-slide-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .testimonial-arrow.prev {
        left: 1rem;
    }

    .testimonial-arrow.next {
        right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .service-hero {
        padding: 3rem 0;
    }

    .service-hero .card {
        border-radius: 1rem;
    }

    article + article {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .before-after-label {
        top: 10px;
        font-size: 0.75rem;
    }
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.blog-card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.blog-card-link {
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-post-meta span {
    font-size: 0.9rem;
}

.blog-post-hero img {
    object-fit: cover;
    max-height: 360px;
    width: 100%;
}

.faq-page {
    background: #f8fafc;
}

.faq-sidebar {
    position: relative;
    border-radius: 1.25rem;
    padding: 0.5rem;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.12) 0%, #ffffff 55%, rgba(26, 54, 93, 0.08) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.faq-sidebar::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.22) 0%, rgba(255, 107, 53, 0) 70%);
    z-index: 0;
}

.faq-sidebar .card-body {
    position: relative;
    z-index: 1;
    padding: 2.25rem 2rem;
}

.faq-sidebar-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.faq-sidebar-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.faq-sidebar-stat .value {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.faq-sidebar-stat .label {
    display: block;
    font-size: 0.85rem;
}

.faq-category-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-category-item {
    list-style: none;
}

.faq-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    background: rgba(26, 54, 93, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.faq-category-link::after {
    content: '\2192';
    font-size: 1rem;
    color: var(--accent-color);
    margin-left: 0.75rem;
}

.faq-category-link:hover,
.faq-category-link:focus {
    background: rgba(26, 54, 93, 0.12);
    color: var(--primary-color);
}

.faq-category-link .badge {
    font-size: 0.75rem;
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary-color);
}

.faq-sidebar-contact {
    background: rgba(26, 54, 93, 0.08);
}

.faq-category-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.faq-category-card .card-body {
    padding: 2rem;
}

.faq-category-card .accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(26, 54, 93, 0.05);
    border: none;
}

.faq-category-card .accordion-item + .accordion-item {
    margin-top: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.faq-category-card .accordion-button:not(.collapsed) {
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-category-card .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.2);
}

.faq-category-card .accordion-body {
    line-height: 1.7;
    color: #475569;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

.faq-bottom-cta-section {
    background: #fff;
}

.faq-bottom-cta {
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(255, 107, 53, 0.08) 100%);
}

@media (min-width: 992px) {
    .faq-sidebar {
        position: sticky;
        top: 120px;
    }
}

@media (max-width: 991.98px) {
    .faq-sidebar {
        position: static;
    }

    .faq-sidebar-stats {
        gap: 1rem;
    }

    .faq-category-link {
        padding: 0.75rem 0.9rem;
    }

    .faq-sidebar .card-body {
        padding: 1.75rem 1.5rem;
    }
}

/* Corporate Page */
.corporate-hero {
    background: linear-gradient(160deg, rgba(26, 54, 93, 0.95) 0%, rgba(15, 23, 42, 0.82) 60%, rgba(255, 107, 53, 0.18) 100%);
    color: #fff;
}

.corporate-hero .badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    letter-spacing: 0.08em;
}

.corporate-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.4rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.corporate-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #1f2933;
}

.corporate-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.corporate-value-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.corporate-value-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 107, 53, 0.12);
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.corporate-value-card h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.corporate-expertise-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.6rem 1.4rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.corporate-expertise-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(26, 54, 93, 0.12);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 auto 0.85rem;
}

.corporate-expertise-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline.compact {
    gap: 1.1rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent-color);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.timeline-step h6 {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
}

/* .cta-panel styles removed as CTA section is no longer used */

@media (max-width: 991.98px) {
    .corporate-hero {
        text-align: center;
    }

    .corporate-hero-media {
        max-width: 420px;
        margin: 0 auto;
    }

    .timeline-step {
        flex-direction: column;
    }

    .timeline-step h6 {
        margin-top: 0.5rem;
    }
}

.footer-cta {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 194, 0.25);
}

.footer-cta a.btn {
    font-weight: 600;
    color: #fff;
}

.footer-cta a.btn.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.65);
}

.footer-cta a.btn:hover,
.footer-cta a.btn:focus {
    color: #fff;
}

.footer-columns {
    margin-top: 2rem;
}

.footer-plain-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-plain-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-plain-list li a:hover,
.footer-plain-list li a:focus {
    color: #fff;
}

.footer-plain-list li i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover,
.footer-social-link:focus {
    background: rgba(255, 107, 53, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .footer-cta {
        text-align: center;
    }

    .footer-plain-list li {
        justify-content: center;
    }
}

/* Contact Page */
.contact-page {
    position: relative;
}

.contact-highlight {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.97), rgba(10, 24, 46, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(10, 24, 46, 0.35);
    overflow: hidden;
}

.contact-highlight .badge {
    letter-spacing: 0.08em;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-method .btn {
    padding-inline: 1.5rem;
    border-radius: 999px;
}

.contact-highlight-stats span:first-child {
    letter-spacing: -0.02em;
}

.contact-highlight-note {
    max-width: 28rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 0.75rem;
    border-color: rgba(26, 54, 93, 0.15);
    padding-block: 0.8rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: rgba(26, 54, 93, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.1);
}

.contact-step-card {
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(26, 54, 93, 0.12);
}

.contact-step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(26, 54, 93, 0.08);
    color: #1a365d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.contact-cta-panel {
    background: linear-gradient(135deg, #1a365d, #264a7d);
    box-shadow: 0 25px 55px rgba(26, 54, 93, 0.3);
}

.contact-cta-panel .btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.contact-cta-panel .btn-outline-light:hover,
.contact-cta-panel .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

@media (max-width: 991.98px) {
    .contact-highlight {
        min-height: auto;
    }

    .contact-highlight-stats {
        gap: 2rem;
    }
}

@media (max-width: 575.98px) {
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-method .btn {
        width: 100%;
        text-align: center;
    }

    .contact-cta-panel {
        text-align: center;
    }

    .contact-cta-panel .d-flex {
        width: 100%;
    }

    .contact-cta-panel .btn {
        width: 100%;
    }
}

