:root {
    --navy-950: #081a2f;
    --navy-900: #0c2340;
    --navy-800: #13365f;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --gold-500: #b88a44;
    --gold-400: #d0aa6c;
    --teal-500: #0f6e7c;
    --danger-500: #b42318;
    --success-500: #087443;
    --radius: 14px;
    --shadow-sm: 0 6px 20px rgba(8, 26, 47, 0.07);
    --shadow-md: 0 12px 34px rgba(8, 26, 47, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--navy-950);
    background: radial-gradient(circle at 0% 0%, #eff4fa 0, #ffffff 45%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    font-weight: 700;
}

.icon-whatsapp {
    width: 14px;
    height: 14px;
    color: #25d366;
    flex-shrink: 0;
}

.icon-phone {
    width: 14px;
    height: 14px;
    color: #25d366;
    flex-shrink: 0;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

h1,
h2,
h3,
h4 {
    font-family: 'Merriweather', serif;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
    margin: 0 0 1rem;
    color: #23364e;
}

ul,
ol {
    margin: 0;
    padding-left: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.75rem 1.3rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
    color: var(--navy-950);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    border-color: rgba(19, 54, 95, 0.4);
    color: var(--navy-900);
}

.btn-outline:hover {
    border-color: var(--navy-800);
}

.btn-outline.light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(12, 35, 64, 0.1);
}

.top-bar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.25rem;
}

.top-bar-contact,
.top-bar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar a:hover {
    color: var(--gold-400);
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 5.25rem;
}

.logo img {
    width: 194px;
}

.desktop-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a,
.desktop-dropdown-toggle {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-900);
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
}

.desktop-nav li.active > a,
.desktop-nav li.active > .desktop-dropdown-toggle {
    background: rgba(184, 138, 68, 0.16);
    color: var(--navy-900);
}

.desktop-dropdown-toggle svg,
.claim-menu-toggle svg,
.mobile-accordion-toggle svg {
    width: 16px;
    height: 16px;
}

.dropdown-menu,
.claim-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 270px;
    list-style: none;
    padding: 0.7rem;
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: all 0.2s ease;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu,
.claim-menu-wrap.open .claim-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu li,
.claim-dropdown-menu li {
    margin: 0;
}

.dropdown-menu a,
.claim-dropdown-menu a {
    display: block;
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown-menu a:hover,
.claim-dropdown-menu a:hover {
    background: rgba(15, 110, 124, 0.1);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.claim-menu-wrap {
    position: relative;
}

.claim-menu-toggle {
    border: 0;
    font: inherit;
}

.claim-dropdown-menu {
    right: 0;
    left: auto;
    min-width: 310px;
}

.mobile-menu-toggle,
.mobile-nav {
    display: none;
}

.mobile-menu-toggle {
    border: 1px solid rgba(12, 35, 64, 0.2);
    background: var(--white);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
}

.mobile-nav {
    border-top: 1px solid rgba(12, 35, 64, 0.08);
    background: var(--white);
}

.mobile-nav-inner {
    width: min(650px, 92%);
    margin-inline: auto;
    padding: 1rem 0 1.4rem;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > .mobile-nav-inner > ul > li > a,
.mobile-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.78rem 0;
    border: 0;
    border-bottom: 1px solid rgba(12, 35, 64, 0.08);
    background: transparent;
    font: inherit;
    font-weight: 700;
    color: var(--navy-900);
    text-align: left;
}

.mobile-accordion-panel {
    display: none;
    padding: 0.2rem 0 0.75rem;
}

.mobile-accordion-panel a {
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.58rem 0 0.58rem 0.85rem;
    border-bottom: 0;
    color: #26415f;
    display: block;
}

.mobile-accordion-item.open .mobile-accordion-panel {
    display: block;
}

.mobile-cta-stack {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.section {
    padding: clamp(2.8rem, 6vw, 5.3rem) 0;
}

.hero {
    padding-top: clamp(2.4rem, 7vw, 5rem);
    padding-bottom: clamp(2.4rem, 5vw, 4rem);
    background:
        radial-gradient(circle at 85% -20%, rgba(15, 110, 124, 0.18), transparent 42%),
        linear-gradient(125deg, #0f2745, #153c69);
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero h1,
.hero p,
.hero li {
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.28rem 0.82rem;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.hero-points {
    padding-left: 1.1rem;
    margin: 1rem 0 1.4rem;
}

.hero-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.trust-strip {
    border: 1px solid rgba(12, 35, 64, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-top: -1.6rem;
    position: relative;
    z-index: 2;
}

.trust-strip ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip li {
    padding: 0.7rem;
    border-radius: 12px;
    background: linear-gradient(150deg, #f8fbff, #edf3f8);
    font-weight: 700;
    color: var(--navy-900);
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin-bottom: 1.7rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    border: 1px solid rgba(12, 35, 64, 0.1);
    border-radius: var(--radius);
    padding: 1.2rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.card h3 {
    margin-bottom: 0.6rem;
}

.card ul {
    display: grid;
    gap: 0.42rem;
    margin-top: 0.6rem;
}

.muted-bg {
    background: linear-gradient(130deg, #edf4fb, #f8fbff);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}

.content-block {
    padding: 1.3rem;
    border: 1px solid rgba(12, 35, 64, 0.11);
    border-radius: var(--radius);
    background: var(--white);
}

.content-block ul {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.image-grid {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-grid img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
}

.faq-wrap {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid rgba(12, 35, 64, 0.14);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    background: var(--white);
}

.faq-item h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(12, 35, 64, 0.11);
    text-align: center;
    padding: 1rem;
}

.stat strong {
    display: block;
    font-size: 1.65rem;
    color: var(--teal-500);
    margin-bottom: 0.25rem;
}

.testimonial-grid,
.team-grid,
.insight-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial,
.team-card,
.insight-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(12, 35, 64, 0.1);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.testimonial-content,
.team-card-content,
.insight-content {
    padding: 1.1rem;
}

.team-card img,
.insight-card img,
.testimonial img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.form-shell {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(12, 35, 64, 0.12);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
}

.form-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field,
.form-field-full {
    display: grid;
    gap: 0.36rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

label {
    font-weight: 700;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(12, 35, 64, 0.2);
    border-radius: 10px;
    padding: 0.68rem 0.75rem;
    font: inherit;
    color: var(--navy-950);
    background: #fff;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(15, 110, 124, 0.25);
    border-color: var(--teal-500);
}

.input-combo {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 0.5rem;
}

.input-combo-code {
    background: #f5f8fc;
    font-weight: 700;
}

.g-recaptcha {
    display: inline-block;
    min-height: 78px;
}

.error-text {
    color: var(--danger-500);
    font-size: 0.84rem;
    margin: 0;
}

.form-note {
    font-size: 0.82rem;
    color: var(--slate-500);
    margin: 0.2rem 0 1rem;
}

.flash-success,
.flash-error {
    padding: 0.8rem 0.95rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.flash-success {
    background: rgba(8, 116, 67, 0.12);
    border: 1px solid rgba(8, 116, 67, 0.24);
    color: #065f39;
}

.flash-error {
    background: rgba(180, 35, 24, 0.09);
    border: 1px solid rgba(180, 35, 24, 0.21);
    color: #8f1d16;
}

.cta-band {
    background: linear-gradient(120deg, #102a48, #1f4a76);
    color: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.cta-band p,
.cta-band h2 {
    color: var(--white);
}

.site-footer {
    margin-top: 2.6rem;
    background: linear-gradient(160deg, #0c2340, #06172a);
    color: rgba(255, 255, 255, 0.95);
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta-inner {
    padding: 2.2rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: center;
}

.footer-cta h2,
.footer-cta p {
    color: var(--white);
}

.footer-cta-actions {
    display: flex;
    gap: 0.65rem;
}

.footer-main {
    padding: 2.2rem 0;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.05fr 1.5fr;
}

.footer-brand {
    display: grid;
    gap: 0.6rem;
    max-width: 330px;
}

.footer-brand p,
.footer-brand address,
.footer-brand a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-brand address {
    font-style: normal;
}

.social-list {
    display: flex;
    gap: 0.55rem;
}

.social-list a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-list svg {
    width: 18px;
    height: 18px;
}

.footer-links-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-column h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.footer-column a:hover,
.footer-brand a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.82rem;
}

.policy-content {
    max-width: 900px;
    display: grid;
    gap: 1.1rem;
}

.policy-content section {
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.11);
    border-radius: var(--radius);
    padding: 1.1rem;
}

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

    .mobile-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .nav-wrap {
        grid-template-columns: auto 1fr auto;
    }

    .header-cta-group {
        display: none;
    }

    .mobile-nav.open {
        display: block;
    }

    .hero-grid,
    .footer-main,
    .footer-cta-inner,
    .cta-band,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .image-grid,
    .stats-grid,
    .card-grid,
    .team-grid,
    .testimonial-grid,
    .insight-grid,
    .footer-links-grid,
    .trust-strip ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .top-bar {
        display: none;
    }

    .header-cta-group {
        display: none;
    }

    .nav-wrap {
        min-height: 4.5rem;
        grid-template-columns: auto 1fr auto;
    }

    .logo img {
        width: 162px;
    }

    .form-grid,
    .image-grid,
    .stats-grid,
    .card-grid,
    .team-grid,
    .testimonial-grid,
    .insight-grid,
    .footer-links-grid,
    .trust-strip ul {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0.7rem 0;
    }

    .input-combo {
        grid-template-columns: 90px 1fr;
    }
}

/* Redesign Enhancements */
:root {
    --teal-600: #0a6370;
    --ink-link: #0a6370;
}

body {
    background:
        radial-gradient(circle at 15% -10%, rgba(15, 110, 124, 0.18), transparent 32%),
        radial-gradient(circle at 100% 0%, rgba(184, 138, 68, 0.12), transparent 28%),
        #ffffff;
}

.site-header {
    box-shadow: 0 8px 30px rgba(12, 35, 64, 0.09);
}

.desktop-nav a,
.desktop-dropdown-toggle {
    border: 1px solid transparent;
}

.desktop-nav li.active > a,
.desktop-nav li.active > .desktop-dropdown-toggle,
.desktop-nav a:hover,
.desktop-dropdown-toggle:hover {
    border-color: rgba(184, 138, 68, 0.4);
    background: rgba(184, 138, 68, 0.14);
}

.btn {
    letter-spacing: 0.01em;
    font-weight: 800;
    border-width: 2px;
    box-shadow: 0 6px 20px rgba(8, 26, 47, 0.12);
}

.btn-primary {
    background: linear-gradient(130deg, #e6c28a 0%, #c5964f 46%, #b78239 100%);
}

.btn-outline {
    background: #ffffff;
}

.btn:hover {
    transform: translateY(-2px);
}

main a:not(.btn) {
    color: var(--ink-link);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

main a:not(.btn):hover {
    color: #084f59;
}

.card ul a {
    font-weight: 700;
}

.card ul a::after {
    content: ' ↗';
    font-size: 0.84rem;
}

.hero-with-motion {
    position: relative;
    overflow: hidden;
}

.hero-with-motion::before,
.hero-with-motion::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.hero-with-motion::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -140px;
    background: radial-gradient(circle, rgba(229, 194, 138, 0.35) 0%, transparent 70%);
    animation: orbitA 9s ease-in-out infinite;
}

.hero-with-motion::after {
    width: 350px;
    height: 350px;
    left: -110px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(91, 205, 223, 0.22) 0%, transparent 70%);
    animation: orbitB 11s ease-in-out infinite;
}

.hero-image-glow {
    position: relative;
}

.hero-image-glow::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.service-fader {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(8, 26, 47, 0.18);
    background: #06172a;
}

.service-slide {
    min-height: 420px;
    display: none;
    position: relative;
}

.service-slide.active {
    display: block;
    animation: fadeSlide 0.8s ease;
}

.service-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.55);
}

.service-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 26, 47, 0.05), rgba(8, 26, 47, 0.92));
}

.service-slide-content h3,
.service-slide-content p {
    color: #fff;
}

.service-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.14);
}

.service-fader-controls {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fader-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(8, 26, 47, 0.65);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.service-fader-dots,
.carousel-dots {
    display: flex;
    gap: 0.35rem;
}

.service-fader-dots button,
.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.service-fader-dots button.active,
.carousel-dots button.active {
    background: #fff;
}

.testimonial-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 0.7rem;
}

.testimonial-stage {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(26%) scale(0.93);
    transition: all 0.45s ease;
    pointer-events: none;
    max-width: 640px;
    margin: auto;
}

.testimonial-slide img {
    height: 260px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
    pointer-events: auto;
}

.testimonial-slide.prev {
    opacity: 0.45;
    transform: translateX(-38%) scale(0.9);
    z-index: 2;
}

.testimonial-slide.next {
    opacity: 0.45;
    transform: translateX(38%) scale(0.9);
    z-index: 2;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(12, 35, 64, 0.25);
    background: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.country-picker {
    position: relative;
}

.country-picker-toggle {
    width: 100%;
    border: 1px solid rgba(12, 35, 64, 0.2);
    border-radius: 10px;
    background: #fff;
    min-height: 46px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    text-align: left;
}

.country-picker-flag-wrap {
    width: 32px;
    height: 24px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(12, 35, 64, 0.18);
}

.country-picker-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-picker-label {
    font-weight: 700;
    color: #10233d;
}

.country-picker-meta {
    font-size: 0.82rem;
    color: #3f566f;
}

.country-picker-menu {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    margin-top: 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(12, 35, 64, 0.2);
    background: #fff;
    box-shadow: 0 18px 38px rgba(8, 26, 47, 0.2);
    padding: 0.55rem;
}

.country-picker-search {
    margin-bottom: 0.5rem;
}

.country-picker-options {
    max-height: 240px;
    overflow-y: auto;
    display: grid;
    gap: 0.3rem;
}

.country-option {
    border: 1px solid rgba(12, 35, 64, 0.1);
    border-radius: 10px;
    background: #fff;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
    text-align: left;
}

.country-option:hover {
    background: #eef7fb;
    border-color: rgba(15, 110, 124, 0.25);
}

.country-option img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(12, 35, 64, 0.12);
}

.country-option span {
    font-size: 0.85rem;
    color: #314863;
}

.country-option strong {
    font-size: 0.9rem;
    color: #10233d;
}

body.js-animate .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-animate .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(1.015);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes orbitA {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-24px, 20px, 0); }
}

@keyframes orbitB {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(22px, -16px, 0); }
}

@media (max-width: 1120px) {
    .service-slide,
    .service-slide img {
        min-height: 370px;
        height: 370px;
    }

    .testimonial-carousel {
        grid-template-columns: 38px 1fr 38px;
    }
}

@media (max-width: 760px) {
    .service-slide,
    .service-slide img {
        min-height: 350px;
        height: 350px;
    }

    .service-slide-content {
        padding: 1rem;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .testimonial-stage {
        min-height: 380px;
    }

    .testimonial-slide.prev,
    .testimonial-slide.next {
        transform: translateX(0) scale(0.93);
    }

    .carousel-btn {
        display: none;
    }
}
/* Final UI refinements */
.site-header .desktop-nav > ul {
    gap: 0.12rem;
}

.site-header .desktop-nav a,
.site-header .desktop-dropdown-toggle {
    white-space: nowrap;
    line-height: 1.12;
    font-size: 0.84rem;
    padding: 0.5rem 0.55rem;
}

.site-header .header-cta-group {
    gap: 0.42rem;
}

.site-header .header-cta-group .btn {
    font-size: 0.8rem;
    padding: 0.52rem 0.78rem;
    min-height: 37px;
    border-width: 1px;
    box-shadow: none;
    white-space: nowrap;
    letter-spacing: 0;
}

.site-header .claim-menu-toggle {
    gap: 0.18rem;
}

.site-header .claim-menu-toggle svg {
    width: 14px;
    height: 14px;
}

.hero-main-slider {
    margin-bottom: 1.4rem;
}

.hero-under-slider {
    align-items: start;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.6rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.testimonial-carousel .carousel-dots {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.2rem;
}

.testimonial-stage {
    min-height: 320px;
}

.testimonial-slide {
    max-width: 720px;
}

.testimonial-slide img {
    display: none !important;
}

.testimonial-text-card {
    background: #ffffff;
}

.testimonial-text-card .testimonial-content {
    padding: 1.5rem 1.55rem;
}

.testimonial-quote {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.78;
    color: #10233d;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(12, 35, 64, 0.12);
}

.testimonial-name,
.testimonial-service {
    margin: 0;
}

.testimonial-name {
    font-weight: 800;
    color: #0c2340;
}

.testimonial-service {
    font-weight: 700;
    color: #0f6e7c;
    font-size: 0.9rem;
}

.country-picker-meta {
    white-space: nowrap;
}

@media (max-width: 1380px) {
    .site-header .desktop-nav a,
    .site-header .desktop-dropdown-toggle {
        font-size: 0.8rem;
        padding: 0.48rem 0.48rem;
    }

    .site-header .header-cta-group .btn {
        font-size: 0.76rem;
        padding: 0.48rem 0.66rem;
    }
}

@media (max-width: 1120px) {
    .hero-main-slider {
        margin-bottom: 1.15rem;
    }

    .testimonial-stage {
        min-height: 350px;
    }
}

@media (max-width: 760px) {
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .testimonial-stage {
        min-height: 300px;
    }

    .testimonial-text-card .testimonial-content {
        padding: 1.1rem;
    }
}

/* Contrast fixes */
.btn-primary {
    color: #0c2340;
}

.btn-outline {
    background: #ffffff;
    color: #0c2340;
    border-color: rgba(12, 35, 64, 0.36);
}

.btn-outline:hover {
    background: #f0f7ff;
    color: #0a223f;
    border-color: rgba(10, 99, 112, 0.5);
}

.btn-outline.light {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.74);
}

.btn-outline.light:hover {
    background: #ffffff;
    color: #0c2340;
    border-color: #ffffff;
}

.hero .btn-outline.light,
.cta-band .btn-outline.light,
.site-footer .btn-outline.light,
.service-slide-content .btn-outline.light {
    box-shadow: 0 8px 20px rgba(4, 16, 28, 0.2);
}

/* Footer readability + mobile navigation refresh */
.footer-bottom-inner p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-bottom {
    background: rgba(1, 10, 21, 0.32);
}

@media (max-width: 1120px) {
    .site-header .nav-wrap {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .site-header .mobile-menu-toggle {
        margin-left: auto;
        justify-self: end;
    }

    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        border: 1px solid rgba(12, 35, 64, 0.24);
        background: linear-gradient(145deg, #ffffff, #edf4fb);
        box-shadow: 0 8px 20px rgba(8, 26, 47, 0.14);
        transition: all 0.2s ease;
    }

    .mobile-menu-toggle:hover {
        border-color: rgba(10, 99, 112, 0.42);
        transform: translateY(-1px);
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        transition: transform 0.24s ease, opacity 0.2s ease;
    }

    .mobile-menu-toggle[aria-expanded='true'] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded='true'] span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle[aria-expanded='true'] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-nav {
        border-top: 1px solid rgba(12, 35, 64, 0.08);
        background: linear-gradient(180deg, #ffffff, #f5f9fd);
        box-shadow: 0 16px 28px rgba(8, 26, 47, 0.12);
    }

    .mobile-nav-inner {
        width: min(740px, 94%);
        padding: 1rem 0 1.2rem;
    }

    .mobile-nav > .mobile-nav-inner > ul {
        display: grid;
        gap: 0.5rem;
    }

    .mobile-nav > .mobile-nav-inner > ul > li {
        border: 1px solid rgba(12, 35, 64, 0.12);
        border-radius: 12px;
        background: #ffffff;
        overflow: hidden;
    }

    .mobile-nav > .mobile-nav-inner > ul > li > a,
    .mobile-nav .mobile-accordion-toggle {
        padding: 0.92rem 0.95rem;
        border: 0;
        line-height: 1.3;
        font-size: 0.96rem;
        font-weight: 800;
        color: #0c2340;
    }

    .mobile-nav .mobile-accordion-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ffffff;
    }

    .mobile-nav > .mobile-nav-inner > ul > li > a {
        display: block;
    }

    .mobile-accordion-toggle svg {
        transition: transform 0.2s ease;
    }

    .mobile-accordion-item.open .mobile-accordion-toggle {
        background: #eef6fc;
        color: #0a6370;
    }

    .mobile-accordion-item.open .mobile-accordion-toggle svg {
        transform: rotate(180deg);
    }

    .mobile-accordion-panel {
        display: none;
        padding: 0.45rem 0.62rem 0.72rem;
        background: #f7fbff;
        border-top: 1px solid rgba(12, 35, 64, 0.08);
        list-style: none;
        margin: 0;
    }

    .mobile-accordion-item.open > .mobile-accordion-panel {
        display: block;
    }

    .mobile-accordion-panel li + li {
        margin-top: 0.35rem;
    }

    .mobile-accordion-panel a {
        display: block;
        padding: 0.68rem 0.78rem;
        border-radius: 10px;
        border: 1px solid rgba(12, 35, 64, 0.08);
        background: #ffffff;
        color: #13365f;
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .mobile-accordion-panel a:hover {
        border-color: rgba(10, 99, 112, 0.34);
        background: #eff7fc;
        color: #0a6370;
    }

    .mobile-cta-stack {
        margin-top: 0.95rem;
        gap: 0.55rem;
    }

    .mobile-cta-stack .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 44px;
        padding: 0.78rem 1rem;
        border-radius: 12px;
        font-size: 0.92rem;
        font-weight: 800;
        text-align: center;
    }

    .mobile-cta-stack .btn-primary {
        color: #0c2340;
        border: 1px solid rgba(183, 130, 57, 0.65);
        box-shadow: 0 8px 18px rgba(8, 26, 47, 0.18);
    }

    .mobile-cta-stack .btn-outline {
        background: #ffffff;
        color: #0c2340;
        border: 1px solid rgba(12, 35, 64, 0.24);
        box-shadow: 0 6px 14px rgba(8, 26, 47, 0.1);
    }
}

@media (max-width: 760px) {
    .site-header .nav-wrap {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.7rem;
    }

    .site-header .mobile-menu-toggle {
        margin-left: 0;
    }

    .mobile-nav-inner {
        width: min(680px, 94%);
        padding-bottom: 1rem;
    }

    .mobile-nav > .mobile-nav-inner > ul > li > a,
    .mobile-nav .mobile-accordion-toggle {
        font-size: 0.94rem;
    }

    .footer-bottom-inner p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.back-to-top {
    position: fixed;
    right: 1.05rem;
    bottom: 1.05rem;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(12, 35, 64, 0.28);
    border-radius: 999px;
    background: linear-gradient(145deg, #ffffff, #e8f2fb);
    color: #0c2340;
    font-size: 1.2rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(8, 26, 47, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    z-index: 70;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(145deg, #ffffff, #d9ebfb);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(10, 99, 112, 0.32);
    outline-offset: 2px;
}

@media (max-width: 760px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        right: 0.75rem;
        bottom: 0.85rem;
        font-size: 1.1rem;
    }
}

.about-hero-image img {
    min-height: 460px;
    object-position: center 16%;
}

@media (max-width: 760px) {
    .about-hero-image img {
        min-height: 340px;
        object-position: center 20%;
    }
}
