body,
html {
    font-family: 'Quicksand', sans-serif;
    /* font-family: "Raleway", sans-serif; */
    /* font-family: "Poppins", sans-serif; */
    /* font-family: "Philosopher", sans-serif; */


    margin: 0;
    padding: 0;
}

#mainHeader {
    transition: all 0.3s ease-in-out;
}

.header-scrolled {
    border: 1px solid #ffffff33;
    box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
    animation: headerSticky .5s ease forwards;
}

@keyframes headerSticky {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-shape img {
    animation-name: floating-animate-model-1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes floating-animate-model-1 {
    0% {
        transform: translateY(-30px)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(-30px)
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

/* Custom seamless marquee animation classes - pure CSS infinite & smooth */
@keyframes marqueeLTR {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0%);
    }
}

.marquee-track-left {
    display: flex;
    width: fit-content;
    animation: marqueeLTR 45s linear infinite;
}

.marquee-track-right {
    display: flex;
    width: fit-content;
    animation: marqueeRTL 48s linear infinite;
}

/* Pause on hover for both rows */
.reviews-row:hover .marquee-track-left,
.reviews-row:hover .marquee-track-right {
    animation-play-state: paused;
}

/* Card hover effect */
.review-card {
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform, box-shadow;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(208, 1, 75, 0.08);
}

/* blurred gradient blobs */
.blob-bg-1 {
    background: radial-gradient(circle at 20% 30%, rgba(208, 1, 75, 0.08), rgba(57, 13, 104, 0.02));
    filter: blur(70px);
}

.blob-bg-2 {
    background: radial-gradient(circle at 85% 70%, rgba(57, 13, 104, 0.09), rgba(208, 1, 75, 0.02));
    filter: blur(85px);
}

/* large quote watermark */
.quote-watermark {
    font-size: 22vw;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: rgba(0, 0, 0, 0.012);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    line-height: 0.7;
}

/* additional custom star rating inline */
.star-filled {
    color: #fbbf24;
}

.verified-badge {
    background: linear-gradient(135deg, rgba(208, 1, 75, 0.08), rgba(57, 13, 68, 0.04));
    backdrop-filter: blur(2px);
}






/* Custom gradient blobs, decorative dots, luxury subtle elements */


/* custom floating & animations */
@keyframes floatSoft {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-node {
    animation: floatSoft 5s ease-in-out infinite;
}

.floating-node:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-node:nth-child(3) {
    animation-delay: 0.5s;
}

.floating-node:nth-child(4) {
    animation-delay: 0.8s;
}

.floating-node:nth-child(5) {
    animation-delay: 1.1s;
}

.floating-node:nth-child(6) {
    animation-delay: 1.4s;
}

/* hover lift, icon scale, glow effect */
.process-card-hover {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.process-node {
    transition: transform 0.3s ease, box-shadow 0.35s ease;
}

.process-node:hover {
    transform: translateY(-10px) scale(1.02);
}

.process-node:hover .node-icon {
    transform: scale(1.08);
}

.process-node:hover .outer-ring {
    box-shadow: 0 0 0 6px rgba(208, 1, 75, 0.15);
}

.node-icon {
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* animated connector line (svg stroke dash) */
.connector-svg path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 1.8s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* pills hover glow */
.pill-glow {
    transition: all 0.25s ease;
}

.pill-glow:hover {
    background: white;
    border-color: #D0014B;
    box-shadow: 0 8px 18px -6px rgba(208, 1, 75, 0.25);
    transform: translateY(-2px);
}

/* elegant gradient text */
.gradient-text-premium {
    background: linear-gradient(135deg, #D0014B 0%, #390D68 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Custom scroll & responsive adjustments */
@media (max-width: 1200px) {
    .process-row-scroll {
        overflow-x: auto;
        padding-bottom: 2rem;
        justify-content: flex-start;
    }

    .process-row-scroll::-webkit-scrollbar {
        height: 4px;
    }
}

.section-container {
    position: relative;
    z-index: 2;
}

/* custom ring gradient class */
.gradient-ring-bg {
    background: linear-gradient(145deg, rgba(208, 1, 75, 0.25), rgba(57, 13, 104, 0.2));
}





/* custom smooth hover transitions */
.hover-lift {
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hover-lift:hover {
    transform: translateY(-6px);
}

.btn-primary-glow {
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    box-shadow: 0 20px 35px -12px rgba(208, 1, 75, 0.35);
    transform: scale(1.02);
}

.btn-secondary-hover {
    transition: all 0.25s ease;
}

.btn-secondary-hover:hover {
    background-color: #faf5f0;
    border-color: #390D68;
    color: #390D68;
}

/* floating gradient shapes + abstract editorial elements */
.gradient-blob-1 {
    background: radial-gradient(circle at 30% 40%, rgba(208, 1, 75, 0.08), rgba(57, 13, 104, 0.02));
    filter: blur(70px);
}

.gradient-blob-2 {
    background: radial-gradient(circle at 70% 80%, rgba(57, 13, 104, 0.12), rgba(208, 1, 75, 0.02));
    filter: blur(80px);
}

.giant-letter-bg {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(180px, 22vw, 320px);
    line-height: 0.75;
    letter-spacing: -0.03em;
    user-select: none;
    opacity: 0.12;
    color: #D0014B;
    pointer-events: none;
}

/* decorative line */
.accent-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #D0014B 20%, #390D68 90%);
}

.stat-separator {
    width: 1px;
    height: 30px;
    background: #e2e0df;
}

@media (max-width: 1024px) {
    .accent-line {
        width: 50px;
    }
}




.font-display {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

/* custom subtle glow + grid overlay */
.footer-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 20%, rgba(209, 1, 75, 0.22), rgba(57, 13, 104, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.footer-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(209, 1, 75, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(209, 1, 75, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hover-luxury {
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hover-luxury:hover {
    transform: translateY(-3px);
}

.social-ring {
    transition: all 0.3s ease;
}

.social-ring:hover {
    background: rgba(209, 1, 75, 0.2);
    border-color: #D0014B;
    transform: scale(1.05);
}

.cta-btn {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    background: linear-gradient(105deg, #D0014B 0%, #a3013d 100%);
    box-shadow: 0 12px 28px -10px rgba(208, 1, 75, 0.3);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px -14px rgba(208, 1, 75, 0.5);
    background: linear-gradient(105deg, #e00254 0%, #c00147 100%);
}

.glass-subtle {
    background: rgba(7, 11, 26, 0.65);
    backdrop-filter: blur(2px);
    border: 0.5px solid rgba(209, 1, 75, 0.2);
}

.premium-divider {
    background: linear-gradient(90deg, rgba(209, 1, 75, 0.7), rgba(57, 13, 104, 0.3), rgba(7, 11, 26, 0));
}

.trust-item {
    transition: all 0.25s;
}

.trust-item:hover {
    color: #D0014B;
}

.footer-link {
    position: relative;
    display: inline-block;
    transition: color 0.2s;
}

.footer-link:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D0014B;
    transition: width 0.25s ease-out;
}

.footer-link:hover:after {
    width: 100%;
}

.footer-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-grid-pattern {
        background-size: 30px 30px;
    }
}

.nav-link.active {
    color: #D0014B !important;
}

.glass-wa {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.20), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.glass-wa:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.25);
}

.floating-glow-wa {
    background: radial-gradient(circle at 70% 30%, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.03) 70%, transparent 90%);
    filter: blur(28px);
    pointer-events: none;
}

.pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 9999px;
    border: 2px solid rgba(37, 211, 102, 0.20);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 9999px;
    border: 2px solid rgba(37, 211, 102, 0.12);
    animation: pulse-ring 2.4s ease-out infinite 0.4s;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.92);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.3);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: status-pulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
}

@keyframes status-pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }

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

    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

.unread-bubble {
    background: #D0014B;
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 40px;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 10px rgba(208, 1, 75, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(2px);
    white-space: nowrap;
}

.fade-in-wa {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }

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

/* mobile circular - compact */
.wa-mobile-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.45);
    transition: all 0.2s ease;
    color: white;
    font-size: 1.7rem;
    position: relative;
    z-index: 2;
}

.wa-mobile-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.55);
}

.wa-mobile-btn .pulse-ring {
    inset: -6px;
    border-width: 2px;
}

.wa-mobile-btn .pulse-ring::after {
    inset: -6px;
    border-width: 2px;
}


.wa-icon-circle {
    width: 38px;
    height: 38px;
    background: #25D366;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    flex-shrink: 0;
}

.wa-text-content {
    line-height: 1.2;
}

.wa-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a0a2e;
    opacity: 0.6;
}

.wa-phone {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a0a2e;
    letter-spacing: -0.01em;
}

.wa-status {
    font-size: 0.6rem;
    color: #1a0a2e;
    opacity: 0.55;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.wa-status .status-dot {
    width: 5px;
    height: 5px;
}

/* responsive */
@media (max-width: 640px) {


    .unread-bubble {
        font-size: 0.5rem;
        padding: 2px 8px;
    }

    .wa-sticky {
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 641px) {

    .wa-sticky {
        bottom: 28px;
        right: 28px;
    }
}

.unread-pos {
    top: -30px;
    right: -4px;
}

.unread-pos-desktop {
    top: -8px;
    right: -4px;
}

/* cursor */
.wa-desktop,
.wa-mobile-btn {
    cursor: pointer;
}



/* floating trigger pulse + glow */
.pulse-glow {
    box-shadow: 0 0 0 0 rgba(208, 1, 75, 0.6);
    animation: pulseGlow 2.2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 1, 75, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(208, 1, 75, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(208, 1, 75, 0);
    }
}

/* glassmorphism card */
.glass-panel {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25), 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* form field focus glow */
.input-glow:focus {
    box-shadow: 0 0 0 3px rgba(208, 1, 75, 0.3), 0 0 0 1px #818cf8;
    border-color: #818cf8;
    transition: all 0.2s ease;
}

/* button lift */
.btn-lift {
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(208, 1, 75, 0.4);
}

.btn-lift:active {
    transform: translateY(0px);
}

/* backdrop fade */
.backdrop-fade {
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* slide panel */
.slide-panel {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

/* mobile bottom drawer */
@media (max-width: 640px) {
    .slide-panel {
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
        border-radius: 28px 28px 0 0;
        width: 100% !important;
        max-height: 95vh;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: translateY(100%);
        box-shadow: 0 -20px 40px -12px rgba(0, 0, 0, 0.2);
    }

    .slide-panel.open {
        transform: translateY(0%);
    }

    .desktop-only {
        display: none;
    }

    .mobile-trigger {
        display: flex !important;
    }

    .mobile-close-area {
        display: block;
    }
}

@media (min-width: 641px) {
    .slide-panel {
        right: 0;
        top: 50%;
        transform: translateY(-50%) translateX(110%);
        width: 500px;
        max-height: 92vh;
        border-radius: 32px 0 0 32px;
        box-shadow: -20px 20px 50px -10px rgba(0, 0, 0, 0.25);
    }

    .slide-panel.open {
        transform: translateY(-50%) translateX(0%);
    }

    .mobile-trigger {
        display: none !important;
    }

    .mobile-close-area {
        display: none;
    }
}

/* hide scroll on body when open */
.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* whatsapp button */
.whatsapp-btn {
    background: #25D366;
    transition: background 0.15s;
}

.whatsapp-btn:hover {
    background: #1ebe5a;
}

/* rating stars inline */
.trust-badge i {
    color: #fbbf24;
}

/* mobile trigger bottom right */
.mobile-trigger {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 40;
}

/* sticky desktop trigger */
.desktop-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    writing-mode: vertical-rl;
    padding: 18px 12px;
    border-radius: 40px 0 0 40px;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px -6px rgba(79, 70, 229, 0.3);
}