:root {
    --primary-blue: #1A73E8;
    --gradient-start: #0f2027;
    --gradient-mid: #203a43;
    --gradient-end: #2c5364;
    --indo-orange: #FF6F00;
    --indo-blue-dark: #07162c;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --hero-blue-deep: #1a4db8;
    --hero-blue-mid: #2d8fe0;
    --hero-blue-light: #5ec8f5;
    --hero-peach: #f4a574;
    --hero-btn: #2d3436;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #FAFBFC;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}

/* Hero wrapper includes nav + content on blue gradient */
.hero-wrap {
    background: linear-gradient(105deg, #1e5bc8 0%, #2b8fd9 42%, #4db8ef 72%, #7dd3f5 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 72% 45%, rgba(255,255,255,0.18) 0%, transparent 70%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.25) 0%, transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(255,255,255,0.15) 0%, transparent 20%);
    pointer-events: none;
    z-index: 0;
}

.hero-wrap::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' fill='none'%3E%3Cpath d='M400 50 Q500 150 450 250 Q400 350 500 450 Q600 520 700 480' stroke='rgba(255,255,255,0.35)' stroke-width='2' fill='none'/%3E%3Cpath d='M420 80 Q550 120 520 220 Q490 320 580 400 Q650 460 750 420' stroke='rgba(255,255,255,0.22)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M380 100 Q480 200 460 300 Q440 400 550 480' stroke='rgba(255,255,255,0.18)' stroke-width='1' fill='none'/%3E%3Ccircle cx='450' cy='250' r='3' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='500' cy='180' r='2' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='520' cy='320' r='2.5' fill='rgba(255,255,255,0.45)'/%3E%3Ccircle cx='580' cy='400' r='2' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='650' cy='280' r='1.5' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='700' cy='350' r='2' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='620' cy='150' r='1.5' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
    animation: wisps 8s ease-in-out infinite alternate;
}

@keyframes wisps {
    from { transform: translateX(0) translateY(0); opacity: 0.85; }
    to { transform: translateX(-12px) translateY(8px); opacity: 1; }
}

.hero-silhouettes {
    position: absolute;
    right: 18%;
    top: 28%;
    width: 280px;
    height: 320px;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

/* Navbar over hero: fixed so it stays visible while scrolling */
.navbar-hero {
    background: transparent !important;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* Solid state once the page is scrolled */
.navbar-hero.navbar-scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

/* Reserve space for the fixed navbar inside the hero */
.hero-wrap {
    padding-top: 88px;
}

.navbar-hero .navbar-brand {
    /* background: #111; */
    color: #fff !important;
    padding: 8px 14px 8px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 1.1;
}

.navbar-hero .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-hero .brand-text strong {
    font-family: 'Barlow', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.navbar-hero .brand-text small {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    margin-top: 1px;
}

.navbar-hero .nav-link {
    font-weight: 600;
    font-size: 0.82rem;
    color: #1a1a1a !important;
    padding: 6px 10px !important;
    position: relative;
    white-space: nowrap;
}

.navbar-hero .nav-link:hover {
    color: #000 !important;
}

.navbar-hero .nav-link.active {
    color: #000 !important;
}

.navbar-hero .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #111;
    border-radius: 50%;
}

.navbar-hero .navbar-toggler {
    border-color: rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.5);
}

.btn-quote {
    background-color: var(--indo-orange);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    border: none;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #e65f00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

/* Hero Section Content */
.hero-section {
    color: white;
    padding: 48px 0 90px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    line-height: 1.25;
    font-weight: 800;
    color: #111;
    display: inline-block;
    background: #fff;
    padding: 6px 18px;
    margin: 0 0 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-highlight {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    background: var(--hero-peach);
    padding: 6px 18px;
    margin: 0 0 22px;
    box-shadow: 0 4px 16px rgba(244, 165, 116, 0.35);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 540px;
    margin-bottom: 28px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.btn-hero {
    background: var(--hero-btn);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.btn-hero:hover {
    background: #1a1e20;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* Chatbot Illustration */
.chatbot-container {
    position: relative;
    animation: float 4s ease-in-out infinite;
    max-width: 420px;
    margin: 0 auto;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

.chat-bubble-tag {
    position: absolute;
    top: 12%;
    right: 2%;
    background: linear-gradient(145deg, #d4eefe 0%, #a8d8f5 100%);
    color: #3d4a54;
    padding: 14px 22px;
    border-radius: 22px 22px 22px 6px;
    box-shadow: 0 12px 28px rgba(30, 90, 160, 0.25), inset 0 1px 0 rgba(255,255,255,0.7);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    animation: pulse-bubble 2.5s ease-in-out infinite;
    z-index: 3;
}

.chat-bubble-tag::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 12px;
    width: 16px;
    height: 16px;
    background: #a8d8f5;
    border-radius: 3px;
    transform: rotate(45deg);
    box-shadow: -4px 4px 8px rgba(30, 90, 160, 0.12);
}

@keyframes pulse-bubble {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.float-whatsapp {
    position: fixed;
    right: 2%;
    bottom: 5%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.float-whatsapp .wa-tab {
    background: #fff;
    width: 28px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 6px 6px 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.12);
    color: #555;
    font-size: 0.7rem;
    text-decoration: none;
}

.float-whatsapp .wa-btn {
    background: #25D366;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 8px 0 0 6px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s;
}

.float-whatsapp .wa-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

.float-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s;
}

.float-chat:hover {
    transform: scale(1.06);
    color: #fff;
}

.float-chat .badge-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e53935;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

@media (max-width: 991.98px) {
    .navbar-hero .nav-link {
        color: #fff !important;
        padding: 10px 12px !important;
    }
    .navbar-hero .nav-link.active::after {
        background: #fff;
    }
    .navbar-hero .navbar-collapse {
        background: rgba(20, 60, 130, 0.95);
        border-radius: 12px;
        padding: 12px;
        margin-top: 10px;
    }
    .hero-section {
        padding-top: 24px;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-wrap::after {
        opacity: 0.45;
    }
}

/* Statistics Bar */
.stats-bar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    margin-top: -48px;
    position: relative;
    z-index: 10;
    padding: 30px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #E2E8F0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--indo-blue-dark);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Staggered Services Grid Section */
.services-section {
    padding: 100px 0;
    background-color: #FAFBFC;
}

.section-title {
    font-weight: 800;
    color: var(--indo-blue-dark);
    position: relative;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--indo-orange);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--indo-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(26, 115, 232, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-blue);
    color: white;
}

.service-icon-wrapper svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper svg {
    fill: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--indo-blue-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    font-weight: 600;
    color: var(--indo-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.2s;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Offset alignment for visual interest mimicking staggered layout */
@media (min-width: 992px) {
    .services-grid .col-lg-3:nth-child(even) {
        margin-top: 40px;
    }
    .services-grid .col-lg-3:nth-child(odd) {
        margin-top: -10px;
    }
}

/* Business Goal / Megaphone Section */
.goal-section {
    padding: 80px 0;
    background: white;
}

.goal-orange-card {
    background: #FF8A00;
    border-radius: 30px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 111, 0, 0.2);
}

.goal-orange-card svg {
    max-width: 80%;
    height: auto;
}

/* Tech & Tools */
.tech-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #101c30 0%, #071220 100%);
    color: white;
}

.tech-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    margin: 5px;
    transition: all 0.3s;
}

.tech-tab-btn:hover, .tech-tab-btn.active {
    background: var(--indo-orange);
    border-color: var(--indo-orange);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #38bdf8;
}

.tech-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #f1f5f9;
}

/* Work Process */
.process-section {
    padding: 80px 0 90px;
    background-color: #ffffff;
}

.process-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 64px;
}

.process-heading span {
    color: #f07028;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-icon-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 40px rgba(100, 120, 150, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.process-icon-wrap i {
    font-size: 2.3rem;
    color: #1a1a1a;
}

.process-num {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #29b2f0;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(41, 178, 240, 0.4);
}

.process-num.pos-bottom {
    bottom: -6px;
    right: 14px;
}

.process-num.pos-top {
    top: -6px;
    right: 14px;
}

.process-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.process-step p {
    color: #7a7a7a;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 230px;
    margin: 0 auto;
}

/* Dashed curved connector arrows (desktop only) */
.process-arrow {
    display: none;
    position: absolute;
    top: 42px;
    right: -23%;
    width: 46%;
    height: 62px;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

@media (min-width: 992px) {
    .process-arrow {
        display: block;
    }
}

/* Portfolio */
.portfolio-section {
    padding: 100px 0;
    background-color: white;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid #F1F5F9;
    background: white;
    transition: all 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.portfolio-img-container {
    height: 240px;
    background: #e2e8f0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-right: 6px;
    display: inline-block;
}

/* Clients Section */
.clients-section {
    padding: 90px 0 50px;
    background-color: #ffffff;
    overflow: hidden;
}

.clients-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.clients-heading span {
    color: #f07028;
}

.clients-intro {
    color: #8a8a8a;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 740px;
    margin: 0 auto 52px;
}

.clients-body {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
    gap: 20px 32px;
    align-items: center;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px 16px;
    align-items: center;
    justify-items: center;
}

.client-logo-box {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.client-logo-box img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.client-logo-box:hover img {
    transform: scale(1.07);
}

.clients-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.clients-visual img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .clients-body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .clients-visual {
        order: -1;
    }

    .clients-visual img {
        margin: 0 auto;
        max-width: 340px;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 12px;
    }
}

@media (max-width: 575.98px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo-box {
        height: 56px;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 70px 0 60px;
    background: #f0f0f0;
}

.testimonials-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.testimonials-heading span {
    color: #f07028;
}

.testimonials-sub {
    color: #555;
    font-size: 1rem;
    margin-bottom: 48px;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

.testimonial-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #fff;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 18px 40px rgba(0, 0, 0, 0.1);
    justify-self: center;
}

.testimonial-quote {
    color: #3d3d3d;
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.testimonial-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #111;
    margin-bottom: 4px;
}

.testimonial-company {
    color: #2ecfa0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Carousel indicators: small dots, active becomes a dash */
.testimonials-section .carousel-indicators {
    position: static;
    margin: 42px 0 0;
}

.testimonials-section .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #b5b5b5;
    border: none;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.25s ease;
}

.testimonials-section .carousel-indicators .active {
    width: 26px;
    border-radius: 4px;
    background-color: #2d2d2d;
}

@media (max-width: 991.98px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .testimonial-photo {
        width: 220px;
        height: 220px;
    }
}

/* Footer */
footer {
    background-color: var(--indo-blue-dark);
    color: #94a3b8;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    margin-bottom: 12px;
}

footer a:hover {
    color: white;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--indo-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 60px;
    font-size: 0.85rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--indo-orange);
    transform: translateY(-3px);
}

.badge-rating {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85rem;
}

/* FAQs */
.faq-section {
    padding: 80px 0 90px;
    background: #ffffff;
}

.faq-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
}

.faq-heading span {
    color: #f07028;
}

.faq-sub {
    color: #8a8a8a;
    font-size: 0.98rem;
    max-width: 640px;
    margin: 0 auto 48px;
}

.faq-section .accordion-item {
    border: 1px solid #ececec;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #222;
    padding: 18px 22px;
    background: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #f07028;
    background: #fff8f3;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: hue-rotate(180deg) saturate(3);
}

.faq-section .accordion-body {
    color: #6b6b6b;
    font-size: 0.93rem;
    line-height: 1.75;
    padding: 18px 22px;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(46px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* Staggered children inside revealed sections */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
    transition-delay: var(--stagger-delay, 0s);
}

.reveal.revealed .reveal-stagger > * {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
