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

:root {
    --orange: #c11f2f;
    --orange2: #bb1223;
    --navy: #1a1a2e;
    --border: rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'Inter', sans-serif;
    background: #fdf9f5;
    overflow-x: hidden;
}

/* ══ NAV ══ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav.scrolled {
    background: #fff;
    border-bottom: 1px solid rgba(230, 209, 204, 0.5);
    z-index: 11111;
    height: 72px;
}

.nav.scrolled ul.nav-links-row {
    margin-bottom: 0;
}

.nav.scrolled .mobile-drawer {
    top: 72px;
}

a.nav-logo-h {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 0;
}

a.nav-logo-h img {
    height: 90px;
    width: auto;
    display: block;
    transition: height 0.2s ease;
}

.nav.scrolled a.nav-logo-h img {
    height: 62px;
}

.nav-links-row {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links-row a {
    display: block;
    padding: 6px 13px;
    font-size: 13.5px;
    font-weight: 400;
    text-decoration: none;
    color: #555;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.nav-links-row a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--navy);
}

.nav-links-row a.active {
    font-weight: 600;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nav-cta-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: var(--orange);
    border: none;
    cursor: pointer;
    height: 40px;
    padding: 0 22px;
    border-radius: 8px;
    transition: background 0.15s, transform 0.12s;
    box-shadow: 0 3px 14px rgba(232, 87, 26, 0.28);
}

.nav-cta-btn:hover {
    background: #b60f20;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.22s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    z-index: 99;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

.mobile-drawer.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-drawer a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer .mob-cta {
    width: 100%;
    margin-top: 16px;
    height: 48px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ══ HEART ══ */
.heart {
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ══ FOOTER ══ */

/* ══ CURSOR ══ */
body {
    cursor: none;
}

#cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c11f2f;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, opacity 0.15s ease;
    mix-blend-mode: multiply;
}

.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: sparkle-out 0.7s ease-out forwards;
}

@keyframes sparkle-out {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0);
    }
}

@media (max-width: 800px) {
    body {
        cursor: auto;
    }

    #cursor {
        display: none;
    }
}

/* ══ SERVICE HERO ══ */
.service-hero {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.c-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(253, 249, 245, 0.97) 0%, rgba(253, 249, 245, 0.88) 30%, rgba(253, 249, 245, 0.55) 55%, rgba(253, 249, 245, 0.15) 75%, transparent 100%), linear-gradient(to bottom, rgba(253, 249, 245, 0.3) 0%, transparent 30%, transparent 70%, rgba(253, 249, 245, 0.4) 100%);
}

.c-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.c-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    animation: slow-zoom-c 16s ease-out forwards;
}

@keyframes slow-zoom-c {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }
}

/* FIX: hero content must sit above the background image */
.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 560px;
    padding: 0 52px;
}

.service-hero-content {
    max-width: 800px;
    margin-right: auto;
}

.service-hero-content h1 {
    font-size: clamp(40px, 4.2vw, 62px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    animation: fade-up 0.6s ease 0.26s forwards;
}

.service-hero-content h1 span {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(54px, 5.6vw, 80px);
    color: var(--orange);
    line-height: 1.0;
    animation: fade-up 0.6s ease 0.42s forwards;
}

.service-hero-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.72;
    font-weight: 400;
    max-width: 400px;
    margin-bottom: 34px;
    animation: fade-up 0.6s ease 0.72s forwards;
}

/* ══ SERVICES LISTING ══ */
/* .services-listing {
            padding-bottom: 80px;
        } */

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 15px;
    display: grid;
    grid-template-columns: 90px 1fr 250px 290px;
    gap: 25px;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .10);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #fff4f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    height: 60px;
}

.service-icon i {
    font-size: 35px;
    color: #c11f2f;
}

.service-number {
    display: block;
    color: #c11f2f;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2F2C30;
    margin-bottom: 6px;
}

.service-content p {
    margin-bottom: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.72;
    font-weight: 400;
}

.service-link {
    color: #c11f2f;
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 9px;
}

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

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
    font-size: 15px;
    font-weight: 500;
    color: #3B373E;
}

/* .service-features li {
            position: relative;
            padding-left: 36px;
        } */

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border: 2px solid #c11f2f;
    border-radius: 50%;
    color: #c11f2f;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-thumb img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    border-radius: 16px;
}

/* ══ PARTNERS ══ */
.partners-section {
    background: #fff;
    padding: 70px 0 60px;
    text-align: center;
}

.partners-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #999;
}

.partners-label .cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: #c11f2f;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    line-height: 1.2;
}

.partners-title {
    font-weight: 900;
    margin: 6px 0 6px;
    letter-spacing: .06em;
    font-size: 22px;
    color: #2F2C30;
    margin-bottom: 6px;
}

.partners-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.partner-logo {
    width: 180px;
    height: 90px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: all .3s ease;
}

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

.font-cursive {
    font-family: 'Dancing Script', cursive;
    animation: fade-up .6s ease .42s forwards;
    font-size: 48px;
}

/* ══ CTA BAR ══ */
.cta-bar {
    background: var(--orange);
    padding: 44px 0;
}

.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-bar h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-bar-mid p {
    color: rgb(255 255 255 / 92%);
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-bar-mid small {
    color: rgb(255 255 255 / 92%);
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    height: 50px;
    padding: 0 30px;
    border-radius: 10px;
    animation: fade-up 0.6s ease 0.86s forwards;
    transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
    background: #fff;
    color: var(--orange);
}

.cta-bar-btn:hover .arrow {
    transform: translateX(4px);
}

.cta-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    background: #fff;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .service-card {
        grid-template-columns: 90px 1fr 200px 200px;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .service-hero-wrap {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 90px 1fr;
        gap: 16px 20px;
    }

    /* FIX: span full width using 1/-1 instead of column:2 */
    .service-features {
        grid-column: 1 / -1;
    }

    .service-thumb {
        grid-column: 1 / -1;
    }

    .service-thumb img {
        height: 220px;
    }

    .service-features ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }
}

@media (max-width: 768px) {
    .service-hero-content p {
        max-width: 100% !important;
    }

    .c-bg::after {
        background: linear-gradient(to bottom, rgba(253, 249, 245, 0.97) 0%, rgba(253, 249, 245, 0.90) 45%, rgba(253, 249, 245, 0.72) 70%, rgba(253, 249, 245, 0.45) 100%) !important;
    }

    .nav {
        padding: 0 20px;
    }

    .nav-links-row,
    .nav-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .service-hero {
        padding: 110px 0 60px;
        min-height: 420px;
    }

    .service-hero-content h1 {
        font-size: 36px;
    }

    .service-hero-content p {
        font-size: 16px;
    }

    .service-card {
        grid-template-columns: 70px 1fr;
        padding: 24px 18px;
        gap: 12px 16px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .service-icon i {
        font-size: 26px;
    }

    .service-number {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-features {
        grid-column: 1 / -1;
    }

    .service-thumb {
        grid-column: 1 / -1;
    }

    .service-features ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 16px;
    }

    .service-features li {
        font-size: 13.5px;
    }

    .service-thumb img {
        height: 180px;
    }

    .partners-logos {
        gap: 12px 28px;
    }

    .partner-logo {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 28px;
    }

    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 16px;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-features {
        grid-column: 1;
    }

    .service-thumb {
        grid-column: 1;
    }

    .service-features ul {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .service-features li {
        padding-left: 22px;
    }

    .service-number {
        font-size: 18px;
    }

    .service-thumb img {
        height: 160px;
    }

    .cta-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-bar-inner {
        gap: 20px !important;
    }

    .cta-bar-mid p {
        font-size: 15px !important;
    }

    .cta-bar h2 {
        font-weight: 900 !important;
        margin: 6px 0 6px !important;
        letter-spacing: .06em !important;
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }

    .cta-bar-mid small {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .service-hero-content h1 {
        font-size: 32px !important;
    }

    .service-hero-content h1 span {
        font-size: 44px !important;
    }

    .service-hero-content h3 {
        font-size: 18px !important;
    }

    h2.section-title {
        font-size: 22px !important;
    }

    .section-title span {
        animation: fade-up .6s ease .42s forwards !important;
        font-size: 44px !important;
        line-height: 1 !important;
    }

    .what-is-text p {
        font-size: 15px !important;
    }

    p.section-sub {
        font-size: 15px !important;
    }
}