/* =========================================================
   SERVICE PAGE
   PREMIUM BLUE THEME
   COMPLETE RESPONSIVE CSS
========================================================= */

:root {

    /* ================= BLUE PALETTE ================= */

    --primary-blue: #062654;
    --blue-dark: #1557B0;
    --blue: #2F80ED;
    --blue-light: #60A5FA;
    --blue-bright: #3B82F6;
    --blue-soft: #EFF6FF;
    --blue-pale: #F5F9FF;

    --navy: #061F43;
    --navy-light: #0B428C;

    /* ================= BACKGROUNDS ================= */

    --bg-light: #F8FAFC;
    --bg-blue: #F4F8FF;
    --white: #FFFFFF;

    /* ================= TEXT ================= */

    --text-dark: #172033;
    --text-heading: #0B2A55;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* ================= BORDERS ================= */

    --border: #E2E8F0;
    --border-blue: #CFE1FA;

    /* ================= EFFECTS ================= */

    --shadow-sm: 0 5px 20px rgba(15, 55, 110, .06);
    --shadow-md: 0 15px 35px rgba(15, 55, 110, .09);
    --shadow-lg: 0 20px 50px rgba(15, 55, 110, .12);

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: 'Poppins', sans-serif;

    color: var(--text-dark);

    background: #FFFFFF;

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    transition: .3s ease;
}

button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}


/* =========================================================
   SECTION TYPOGRAPHY
========================================================= */

.section-label {

    display: inline-block;

    margin-bottom: 14px;

    color: var(--blue);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.section-title {

    margin: 0;

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;
}

.section-subtitle {

    max-width: 720px;

    margin: 20px auto 0;

    color: var(--text-muted);

    font-size: .96rem;

    line-height: 1.8;
}

.gold-divider {

    width: 65px;

    height: 3px;

    margin: 22px 0;

    background: var(--blue);
}

.gold-divider.center {

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO
========================================================= */

.service-hero {

    position: relative;

    min-height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 150px;

    padding-bottom: 45px;
}


/* HERO BACKGROUND */

.service-hero .hero-bg {

    position: absolute;

    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 0;
}


/* HERO BLUE OVERLAY */

.service-hero .hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(2, 25, 55, .98) 0%,
            rgba(6, 38, 84, .94) 45%,
            rgba(15, 70, 145, .82) 100%
        );

    z-index: 1;
}


/* HERO PATTERN */

.service-hero .hero-pattern {

    position: absolute;

    inset: 0;

    background-image:

        repeating-linear-gradient(
            45deg,
            rgba(96, 165, 250, .035) 0px,
            rgba(96, 165, 250, .035) 1px,
            transparent 1px,
            transparent 40px
        );

    z-index: 2;

    pointer-events: none;
}


/* HERO CONTENT */

.service-hero .hero-content {

    position: relative;

    z-index: 3;

    max-width: 800px;
}


/* HERO BADGE */

.service-hero .hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 20px;

    margin-bottom: 28px;

    border-radius: 30px;

    background: rgba(47, 128, 237, .15);

    border: 1px solid rgba(96, 165, 250, .45);

    color: #93C5FD;

    font-size: .72rem;

    font-weight: 600;

    letter-spacing: .15em;

    backdrop-filter: blur(8px);
}


/* HERO TITLE */

.service-hero h1 {

    margin: 0 0 25px;

    color: #FFFFFF;

    font-family: 'Playfair Display', serif;

    font-size: clamp(2.5rem, 5vw, 4rem);

    font-weight: 700;

    line-height: 1.15;
}

.service-hero h1 span {

    color: var(--blue-light);
}


/* HERO DESCRIPTION */

.service-hero .hero-desc {

    max-width: 650px;

    margin: 0 0 35px;

    color: rgba(255,255,255,.84);

    font-size: 1.05rem;

    line-height: 1.8;
}


/* HERO BUTTON ROW */

.service-hero .flex-gap {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}


/* PRIMARY BUTTON */

.service-hero .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 62px;

    padding: 0 38px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: #FFFFFF;

    border: 1px solid rgba(96,165,250,.25);

    border-radius: 5px;

    text-decoration: none;

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .1em;

    transition: .3s ease;
}

.service-hero .btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(37,99,235,.30);
}


/* OUTLINE BUTTON */

.service-hero .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 62px;

    padding: 0 38px;

    background: rgba(10,40,85,.30);

    color: var(--blue-light);

    border: 2px solid var(--blue);

    border-radius: 5px;

    text-decoration: none;

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .1em;

    backdrop-filter: blur(5px);

    transition: .3s ease;
}

.service-hero .btn-outline:hover {

    background: var(--blue);

    color: #FFFFFF;

    transform: translateY(-3px);
}


/* HERO STATS */

.service-hero .hero-stats {

    display: flex;

    align-items: flex-start;

    gap: 60px;

    flex-wrap: wrap;

    margin-top: 68px;

    padding-top: 32px;

    border-top: 1px solid rgba(111,177,255,.25);
}

.hero-stat-num {

    color: var(--blue-light);

    font-family: 'Playfair Display', serif;

    font-size: 2.35rem;

    font-weight: 700;
}

.hero-stat-label {

    margin-top: 7px;

    color: rgba(255,255,255,.68);

    font-size: .78rem;

    line-height: 1.4;
}


/* =========================================================
   SERVICE INTRO BAND
========================================================= */

.service-intro-band {

    width: 100%;

    background:
        linear-gradient(
            90deg,
            #062654 0%,
            #0F3F87 50%,
            #174C9C 100%
        );

    padding: 27px 0;
}

.service-intro-inner {

    display: flex;

    align-items: center;

    justify-content: center;
}

.service-intro-item {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 0 25px;

    color: rgba(255,255,255,.92);

    font-size: .88rem;

    white-space: nowrap;

    border-right: 1px solid rgba(111,177,255,.3);

    transition: .25s ease;
}

.service-intro-item:last-child {

    border-right: 0;
}

.service-intro-item:hover {

    color: #FFFFFF;

    transform: translateY(-1px);
}

.service-intro-dot {

    width: 9px;

    height: 9px;

    min-width: 9px;

    border-radius: 50%;

    background: var(--blue-light);

    box-shadow:
        0 0 8px rgba(111,177,255,.35);
}


/* =========================================================
   TWO COLUMN
========================================================= */

.two-column {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;
}

.content-column p {

    color: var(--text-muted);

    line-height: 1.85;

    font-size: .95rem;
}

.content-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    color: var(--blue-dark);

    text-decoration: none;

    font-weight: 600;
}

.content-link:hover {

    color: var(--blue);
}


/* =========================================================
   INTRO CARD
========================================================= */

.intro-card {

    padding: 45px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-lg);

    border-top: 3px solid var(--blue);
}

.intro-card-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    color: var(--blue);

    font-size: 1.7rem;
}

.intro-card h3 {

    margin: 0 0 14px;

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;

    font-size: 1.45rem;
}

.intro-card p {

    color: var(--text-muted);

    line-height: 1.8;
}

.intro-list {

    margin-top: 25px;
}

.intro-list div {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 0;

    color: #475569;

    font-size: .88rem;
}

.intro-list i {

    color: var(--blue);
}


/* =========================================================
   LIGHT SECTION
========================================================= */

.light-section {

    background: var(--bg-light);
}


/* =========================================================
   BLUE LIGHT SECTION
========================================================= */

.blue-light-section {

    background:
        linear-gradient(
            180deg,
            #F8FBFF 0%,
            #EFF6FF 100%
        );
}


/* =========================================================
   GRID
========================================================= */

.grid-3 {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.grid-4 {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-grid {

    margin-top: 50px;
}

.feature-card {

    padding: 35px 30px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    transition: .35s ease;

    position: relative;

    overflow: hidden;
}

.feature-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--blue-light)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s ease;
}

.feature-card:hover::before {

    transform: scaleX(1);
}

.feature-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-md);

    border-color: var(--border-blue);
}

.feature-icon {

    color: var(--blue);

    font-size: 2rem;

    margin-bottom: 22px;
}

.feature-card h3 {

    margin: 0 0 12px;

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;
}

.feature-card p {

    color: var(--text-muted);

    font-size: .88rem;

    line-height: 1.8;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.service-grid {

    margin-top: 50px;
}

.service-card {

    position: relative;

    padding: 35px 30px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: .35s ease;
}

.service-card:hover {

    transform: translateY(-7px);

    border-color: #9FC8F9;

    box-shadow:
        0 20px 40px rgba(30,64,175,.10);
}

.service-number {

    position: absolute;

    top: 15px;

    right: 20px;

    color: #E8EEF7;

    font-family: 'Playfair Display', serif;

    font-size: 2.8rem;

    font-weight: 700;
}

.service-icon {

    margin-bottom: 22px;

    color: var(--blue);

    font-size: 1.8rem;
}

.service-card h3 {

    margin: 0 0 12px;

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;

    font-size: 1.2rem;
}

.service-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: .86rem;

    line-height: 1.8;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background:
        linear-gradient(
            135deg,
            #061F43,
            #0B428C
        );
}

.process-section .section-label {

    color: #93C5FD;
}

.process-section .section-title {

    color: #FFFFFF;
}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 50px;
}

.process-card {

    position: relative;

    padding: 35px 25px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(147,197,253,.18);

    text-align: center;

    transition: .3s ease;
}

.process-card:hover {

    transform: translateY(-6px);

    background: rgba(255,255,255,.09);

    border-color: rgba(147,197,253,.4);
}

.process-card > span {

    position: absolute;

    top: 14px;

    right: 18px;

    color: rgba(255,255,255,.18);

    font-size: 1.5rem;

    font-weight: 700;
}

.process-card i {

    margin-bottom: 20px;

    color: var(--blue-light);

    font-size: 2rem;
}

.process-card h3 {

    margin: 0 0 12px;

    color: #FFFFFF;

    font-family: 'Playfair Display', serif;
}

.process-card p {

    color: rgba(255,255,255,.68);

    font-size: .82rem;

    line-height: 1.7;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.documents-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.document-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    color: #475569;

    font-size: .83rem;

    transition: .25s ease;
}

.document-item:hover {

    border-color: var(--border-blue);

    transform: translateX(3px);

    box-shadow: var(--shadow-sm);
}

.document-item i {

    color: var(--blue);
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-grid {

    margin-top: 50px;
}

.benefit-card {

    padding: 30px 22px;

    border: 1px solid var(--border);

    text-align: center;

    background: #FFFFFF;

    transition: .3s ease;
}

.benefit-card:hover {

    transform: translateY(-6px);

    border-color: var(--border-blue);

    box-shadow: var(--shadow-md);
}

.benefit-card i {

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 1.8rem;
}

.benefit-card h3 {

    margin: 0 0 10px;

    font-family: 'Playfair Display', serif;

    color: var(--text-heading);

    font-size: 1.1rem;
}

.benefit-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: .8rem;

    line-height: 1.7;
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {

    background:
        linear-gradient(
            180deg,
            #F8FBFF,
            #EFF6FF
        );
}

.audience-grid {

    margin-top: 50px;
}

.audience-card {

    padding: 30px;

    background: #FFFFFF;

    border: 1px solid var(--border-blue);

    transition: .3s ease;
}

.audience-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.audience-card i {

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 1.8rem;
}

.audience-card h3 {

    margin: 0 0 10px;

    font-family: 'Playfair Display', serif;

    color: var(--text-heading);
}

.audience-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: .84rem;

    line-height: 1.75;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {

    background: #FFFFFF;
}

.why-list {

    display: flex;

    flex-direction: column;

    gap: 17px;
}

.why-list div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    background: var(--bg-light);

    border-left: 3px solid var(--blue);

    transition: .25s ease;
}

.why-list div:hover {

    background: var(--blue-soft);

    transform: translateX(4px);
}

.why-list i {

    color: var(--blue);
}

.why-list span {

    color: #475569;

    font-size: .88rem;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--bg-light);
}

.faq-container {

    max-width: 860px;

    margin: 50px auto 0;
}

.faq-item {

    margin-bottom: 12px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    transition: .3s ease;
}

.faq-item.open {

    border-color: var(--border-blue);

    box-shadow: var(--shadow-sm);
}

.faq-q {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 25px;

    border: 0;

    background: transparent;

    cursor: pointer;

    color: var(--text-heading);

    font-family: 'Poppins', sans-serif;

    font-size: .9rem;

    font-weight: 600;

    text-align: left;
}

.arrow {

    color: var(--blue);

    transition: transform .3s ease;
}

.faq-a {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .35s ease;
}

.faq-a-inner {

    overflow: hidden;

    padding: 0 25px;

    color: var(--text-muted);

    font-size: .85rem;

    line-height: 1.8;
}

.faq-item.open .faq-a {

    grid-template-rows: 1fr;
}

.faq-item.open .faq-a-inner {

    padding-bottom: 22px;
}

.faq-item.open .arrow {

    transform: rotate(180deg);
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {

    background:
        linear-gradient(
            180deg,
            #F8FBFF,
            #EFF6FF
        );
}

.testimonial-grid {

    margin-top: 50px;
}

.testimonial-card {

    padding: 35px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    transition: .3s ease;
}

.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.stars {

    margin-bottom: 18px;

    color: #3B82F6;

    letter-spacing: 3px;
}

.testimonial-card p {

    color: var(--text-muted);

    font-size: .86rem;

    line-height: 1.8;

    font-style: italic;
}

.testimonial-card strong {

    display: block;

    margin-top: 22px;

    color: var(--text-heading);
}

.testimonial-card span {

    color: var(--text-light);

    font-size: .72rem;
}


/* =========================================================
   RELATED SERVICES
========================================================= */

.related-section {

    background: var(--bg-light);
}

.related-grid {

    margin-top: 50px;
}

.related-card {

    display: block;

    padding: 28px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    text-decoration: none;

    transition: .3s ease;
}

.related-card:hover {

    transform: translateY(-5px);

    border-color: var(--border-blue);

    box-shadow: var(--shadow-md);
}

.related-card i {

    margin-bottom: 15px;

    color: var(--blue);

    font-size: 1.8rem;
}

.related-card h4 {

    margin: 0 0 9px;

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;
}

.related-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: .78rem;

    line-height: 1.7;
}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {

    padding: 55px 0;

    background: #FFFFFF;

    overflow: hidden;
}

.clients-label {

    margin-bottom: 30px;

    color: var(--blue-dark);

    font-size: .75rem;

    font-weight: 600;

    letter-spacing: .15em;

    text-align: center;
}

.clients-track-wrap {

    width: 100%;

    overflow: hidden;

    margin-bottom: 18px;
}

.clients-track {

    display: flex;

    width: max-content;

    animation:
        clientScroll 35s linear infinite;
}

.clients-track.reverse {

    animation:
        clientScrollReverse 40s linear infinite;
}

.client-item {

    margin-right: 18px;

    padding: 13px 24px;

    border: 1px solid var(--border);

    background: #FAFBFC;

    color: #475569;

    font-size: .78rem;

    white-space: nowrap;

    transition: .25s ease;
}

.client-item:hover {

    border-color: var(--border-blue);

    color: var(--blue-dark);

    background: var(--blue-soft);
}

@keyframes clientScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@keyframes clientScrollReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #061F43,
            #0A448F
        );
}

.final-cta-content {

    text-align: center;
}

.final-cta .section-label {

    color: #93C5FD;
}

.final-cta h2 {

    margin: 0 0 20px;

    color: #FFFFFF;

    font-family: 'Playfair Display', serif;

    font-size: clamp(2rem,4vw,3rem);

    line-height: 1.2;
}

.final-cta h2 span {

    color: var(--blue-light);
}

.final-cta p {

    max-width: 650px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,.75);

    line-height: 1.8;
}


/* CTA BUTTON */

.final-cta .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 58px;

    padding: 0 30px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: #FFFFFF;

    border-radius: 5px;

    text-decoration: none;

    transition: .3s ease;
}

.final-cta .btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(37,99,235,.35);
}


/* CTA OUTLINE */

.final-cta .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 58px;

    padding: 0 30px;

    color: var(--blue-light);

    border: 1px solid var(--blue);

    border-radius: 5px;

    text-decoration: none;

    transition: .3s ease;
}

.final-cta .btn-outline:hover {

    background: var(--blue);

    color: #FFFFFF;
}

.cta-bottom {

    margin-top: 30px;

    color: rgba(255,255,255,.4);

    font-size: .75rem;
}


/* =========================================================
   BLOG
========================================================= */

.blog-grid {

    margin-top: 50px;
}

.blog-card {

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid var(--border);

    transition: .3s ease;
}

.blog-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);

    border-color: var(--border-blue);
}

.blog-img {

    display: block;

    width: 100%;

    height: 220px;

    object-fit: cover;
}

.blog-body {

    padding: 25px;
}

.blog-tag {

    color: var(--blue);

    font-size: .65rem;

    font-weight: 600;

    letter-spacing: .12em;
}

.blog-body h4 {

    margin: 12px 0;

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;

    line-height: 1.4;
}

.blog-body p {

    color: var(--text-muted);

    font-size: .82rem;

    line-height: 1.7;
}

.blog-body a {

    color: var(--blue);

    font-size: .68rem;

    font-weight: 600;

    text-decoration: none;

    letter-spacing: .1em;
}

.blog-body a:hover {

    color: var(--blue-dark);
}


/* =========================================================
   FADE UP
========================================================= */

.fade-up {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.fade-up.visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-wa {

    position: fixed;

    right: 25px;

    bottom: 90px;

    z-index: 999;
}

.floating-wa-btn {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #FFFFFF;

    font-size: 1.7rem;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

    transition: .3s ease;
}

.floating-wa-btn:hover {

    transform: translateY(-4px) scale(1.04);
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {

    position: fixed;

    right: 25px;

    bottom: 20px;

    z-index: 999;
}

.floating-call-btn {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: #FFFFFF;

    font-size: 1.2rem;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

    transition: .3s ease;
}

.floating-call-btn:hover {

    transform: translateY(-4px);
}


/* =========================================================
   STICKY CONSULTATION
========================================================= */

.sticky-consultation {

    position: fixed;

    left: 25px;

    bottom: 25px;

    z-index: 998;
}

.sticky-consultation a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 22px;

    background: var(--primary-blue);

    color: #FFFFFF;

    border: 1px solid var(--blue);

    border-radius: 4px;

    text-decoration: none;

    font-size: .72rem;

    font-weight: 600;

    transition: .3s ease;
}

.sticky-consultation a:hover {

    background: var(--blue);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}


/* =========================================================
   POPUP
========================================================= */

.consultation-popup,
.thankyou-popup {

    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(2,12,28,.75);

    backdrop-filter: blur(8px);

    z-index: 9999;
}

.consultation-popup.show {

    display: flex;
}

.consultation-box {

    position: relative;

    width: min(850px,100%);

    max-height: 90vh;

    overflow-y: auto;

    background: #FFFFFF;

    padding: 40px;

    border-radius: 8px;

    border-top: 4px solid var(--blue);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);
}

.close-consultation,
.thankyou-close {

    position: absolute;

    top: 15px;

    right: 20px;

    color: #64748B;

    font-size: 2rem;

    cursor: pointer;

    transition: .2s ease;
}

.close-consultation:hover,
.thankyou-close:hover {

    color: var(--blue);
}


/* =========================================================
   FORM
========================================================= */

.form-title {

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;

    font-size: 1.8rem;

    font-weight: 700;
}

.form-subtitle {

    margin: 8px 0 25px;

    color: var(--text-muted);

    font-size: .85rem;
}

.form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {

    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group.full,
.form-submit-wrap {

    grid-column: 1 / -1;
}

.form-group label {

    color: #334155;

    font-size: .78rem;

    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #CBD5E1;

    border-radius: 4px;

    outline: none;

    font-family: 'Poppins', sans-serif;

    font-size: .82rem;

    background: #FFFFFF;

    transition: .25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(47,128,237,.10);
}

.form-group textarea {

    min-height: 120px;

    resize: vertical;
}

.form-submit {

    width: 100%;

    min-height: 52px;

    border: 0;

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: #FFFFFF;

    font-size: .75rem;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.form-submit:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}

.form-privacy {

    margin: 12px 0 0;

    color: #94A3B8;

    text-align: center;

    font-size: .7rem;
}


/* =========================================================
   THANK YOU
========================================================= */

.thankyou-popup.show {

    display: flex;
}

.thankyou-box {

    position: relative;

    max-width: 450px;

    width: 100%;

    padding: 45px;

    background: #FFFFFF;

    text-align: center;

    border-radius: 8px;

    border-top: 4px solid var(--blue);
}

.thankyou-box h2 {

    color: var(--text-heading);

    font-family: 'Playfair Display', serif;
}

.thankyou-box p {

    color: var(--text-muted);
}

.thankyou-btn {

    display: inline-block;

    margin-top: 15px;

    padding: 13px 22px;

    background: #25D366;

    color: #FFFFFF;

    text-decoration: none;

    border-radius: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .grid-4 {

        grid-template-columns:
            repeat(2,1fr);
    }

    .process-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .two-column {

        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {

        width: 92%;
    }

    .section-pad {

        padding: 65px 0;
    }

    .section-pad-sm {

        padding: 50px 0;
    }

    .section-title {

        font-size: 2rem;
    }

    .section-subtitle {

        font-size: .88rem;

        line-height: 1.7;
    }

    .grid-3,
    .grid-4 {

        grid-template-columns: 1fr;
    }


    /* ================= HERO ================= */

    .service-hero {

        min-height: auto;

        padding-top: 110px;

        padding-bottom: 50px;
    }

    .service-hero h1 {

        font-size: 2.25rem;
    }

    .service-hero .hero-desc {

        font-size: .94rem;
    }

    .service-hero .flex-gap {

        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }

    .service-hero .btn-primary,
    .service-hero .btn-outline {

        width: 100%;

        min-height: 56px;
    }


    /* ================= HERO STATS ================= */

    .service-hero .hero-stats {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 28px 20px;

        margin-top: 45px;

        padding-top: 25px;
    }

    .hero-stat-num {

        font-size: 1.9rem;
    }

    .hero-stat-label {

        font-size: .72rem;
    }


    /* ================= INTRO BAND ================= */

    .service-intro-band {

        padding: 20px 0;
    }

    .service-intro-inner {

        display: grid;

        grid-template-columns:
            1fr 1fr;
    }

    .service-intro-item {

        width: 100%;

        min-height: 42px;

        padding: 8px 12px;

        font-size: .72rem;

        white-space: normal;
    }

    .service-intro-item:nth-child(2n) {

        border-right: none;
    }


    /* ================= CARDS ================= */

    .feature-card,
    .service-card,
    .benefit-card,
    .audience-card {

        padding: 28px 22px;
    }


    /* ================= DOCUMENTS ================= */

    .documents-card {

        grid-template-columns: 1fr;
    }


    /* ================= PROCESS ================= */

    .process-grid {

        grid-template-columns: 1fr;
    }


    /* ================= FORM ================= */

    .form-grid {

        grid-template-columns: 1fr;
    }

    .form-group.full,
    .form-submit-wrap {

        grid-column: auto;
    }

    .consultation-box {

        padding: 30px 20px;
    }


    /* ================= STICKY ================= */

    .sticky-consultation {

        left: 12px;

        bottom: 15px;
    }

    .sticky-consultation a {

        font-size: .62rem;

        padding: 12px 15px;
    }


    /* ================= FLOAT BUTTONS ================= */

    .floating-wa {

        right: 15px;

        bottom: 80px;
    }

    .floating-call {

        right: 15px;

        bottom: 15px;
    }

    .floating-wa-btn,
    .floating-call-btn {

        width: 50px;

        height: 50px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .container {

        width: 94%;
    }

    .service-hero h1 {

        font-size: 2rem;
    }

    .service-hero .hero-badge {

        font-size: .58rem;

        padding: 7px 13px;
    }

    .intro-card {

        padding: 28px 22px;
    }

    .hero-stat-num {

        font-size: 1.7rem;
    }

    .service-intro-item {

        font-size: .68rem;
    }

}