/* ==========================================================================
   BASE & VARIABLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow: 0 4px 16px rgba(0, 0, 0, .10);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, .18);
    --radius-sm: .375rem;
    --radius: .625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    /* PHP/DB driven */
    --primary: #1a237e;
    --secondary: #ff6f00;
    --heading-color: #0d1b6e;
    --text-color: #333333;
    --btn-color: #ff6f00;
    --btn-hover: #e65100;
    --footer-bg: #0d1b6e;
    --footer-text: #e0e0e0;
    --nav-bg: #ffffff;
    --link-color: #1a237e;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-color, #333);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color, #0d1b6e);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: .9rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--link-color, #1a237e);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--secondary, #ff6f00);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
}

section {
    padding: 80px 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.625rem;
    min-height: 46px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: .4px;
    border-radius: var(--radius);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    opacity: 0;
    transition: opacity .3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary-brand {
    background: var(--btn-color, #ff6f00);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 111, 0, .35);
}

.btn-primary-brand:hover {
    background: var(--btn-hover, #e65100);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 111, 0, .45);
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--primary, #1a237e);
    color: var(--primary, #1a237e);
}

.btn-outline-brand:hover {
    background: var(--primary, #1a237e);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary, #1a237e), #0d1b6e 60%, #1a237e);
    color: #fff;
    padding: 9px 0;
    font-size: .83rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1030;
    overflow: hidden;
}

.announcement-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    max-width: 65%;
    margin-left: 20px;
}

.announcement-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.announcement-contact {
    display: flex;
    gap: 18px;
    padding-right: 22px;
    align-items: center;
}

.announcement-contact a {
    color: #fff;
    opacity: .88;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.announcement-contact a:hover {
    opacity: 1;
    color: var(--secondary, #ff6f00);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.site-navbar {
    background: var(--nav-bg, #fff);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    padding: .55rem 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all var(--transition-base);
}

.site-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .14);
    padding: .35rem 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary, #1a237e);
    box-shadow: 0 4px 12px rgba(26, 35, 126, .2);
    transition: transform var(--transition-base);
}

.navbar-brand:hover .brand-logo-circle {
    transform: scale(1.05);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary, #1a237e);
    vertical-align: middle;
}

.brand-title span {
    color: var(--secondary, #ff6f00);
}

.navbar-links {
    align-items: center;
    margin-left: auto;
    gap: 4px;
}

.nav-link-item {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--heading-color, #0d1b6e);
    padding: 6px 14px;
    font-size: .97rem;
    position: relative;
    border-radius: var(--radius-sm);
    transition: color var(--transition-base);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary, #ff6f00);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--secondary, #ff6f00);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    transform: scaleX(1);
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 4px;
    width: 34px;
    height: 26px;
    position: relative;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary, #1a237e);
    position: absolute;
    left: 0;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.toggler-bar:nth-child(1) {
    top: 0;
}

.toggler-bar:nth-child(2) {
    top: 10px;
}

.toggler-bar:nth-child(3) {
    top: 20px;
}

/* Mobile Contact Strip */
.mobile-contact-strip {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 12px;
    gap: 10px;
}

.mobile-contact-strip a {
    color: var(--primary, #1a237e);
    font-size: 1.15rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.mobile-contact-strip a:hover {
    background: var(--secondary, #ff6f00);
    color: #fff;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(3px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
#sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1050;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: .35s cubic-bezier(.4, 0, .2, 1);
}

#sidebar.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, var(--primary, #1a237e) 0%, #0d1b6e 100%);
}

.drawer-header .navbar-brand {
    text-decoration: none;
}

.drawer-header .brand-title {
    color: #fff;
}

.drawer-header .brand-title span {
    color: var(--secondary, #ff6f00);
}

.drawer-header .brand-logo-circle {
    border-color: rgba(255, 255, 255, .4);
}

.drawer-close {
    background: rgba(255, 255, 255, .15);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.drawer-close:hover {
    background: rgba(255, 255, 255, .3);
}

.drawer-links {
    padding: 12px 0;
    flex: 1;
    overflow-y: auto;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    color: var(--heading-color, #0d1b6e);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.drawer-link i {
    width: 20px;
    text-align: center;
    color: var(--primary, #1a237e);
    font-size: 1rem;
}

.drawer-link:hover {
    background: var(--gray-50);
    color: var(--secondary, #ff6f00);
    padding-left: 28px;
}

.drawer-link:hover i {
    color: var(--secondary, #ff6f00);
}

.drawer-footer {
    padding: 18px;
    border-top: 1px solid var(--gray-200);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - 82px);
    min-height: 520px;
    background: var(--gray-900);
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 14, 39, .82) 0%, rgba(10, 14, 39, .55) 60%, rgba(10, 14, 39, .3) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    max-width: 620px;
    pointer-events: auto;
}

.align-left {
    margin-right: auto;
    text-align: left;
}

.align-center {
    margin: 0 auto;
    text-align: center;
}

.align-right {
    margin-left: auto;
    text-align: right;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

/* Swiper nav */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, .35);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary, #ff6f00);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.3rem !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--secondary, #ff6f00) !important;
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary, #ff6f00);
    background: rgba(255, 111, 0, .1);
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: .9rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary, #ff6f00), var(--primary, #1a237e));
    border-radius: 3px;
}

.text-start .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header (for inner pages like ideas, legal) */
.page-header {
    background: linear-gradient(135deg, var(--primary, #1a237e) 0%, #0d1b6e 60%, #0a0e27 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    position: relative;
}

.page-header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.page-header-wave svg {
    display: block;
    width: 100%;
}

/* ==========================================================================
   TRUST POSITIONING SECTION
   ========================================================================== */
.trust-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.trust-image-wrapper img {
    border-radius: inherit;
    transition: transform .6s ease;
}

.trust-image-wrapper:hover img {
    transform: scale(1.03);
}

.trust-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, .12) 0%, transparent 60%);
    pointer-events: none;
}

.trust-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--secondary, #ff6f00);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(255, 111, 0, .35);
    text-align: center;
    font-family: var(--font-heading);
}

.trust-badge-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.trust-badge-txt {
    font-size: .78rem;
    font-weight: 600;
    opacity: .9;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.02rem;
    margin-bottom: 1rem;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--secondary, #ff6f00);
    transition: all var(--transition-base);
}

.trust-list li:hover {
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.trust-list li i {
    color: var(--secondary, #ff6f00);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   SERVICE CARDS (What We Do)
   ========================================================================== */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    height: 100%;
    border-bottom: 3px solid transparent;
    text-align: center;
    border-top: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary, #ff6f00);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(26, 35, 126, .08), rgba(26, 35, 126, .04));
    color: var(--primary, #1a237e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
    border: 2px solid rgba(26, 35, 126, .1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary, #1a237e), #0d1b6e);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(26, 35, 126, .3);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    transition: color var(--transition-base);
}

.service-card:hover h3 {
    color: var(--primary, #1a237e);
}

.service-card p {
    font-size: .95rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ==========================================================================
   CORE SERVICES ACCORDION
   ========================================================================== */
.accordion-item {
    border: none;
    margin-bottom: .85rem;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--heading-color);
    background: #fff;
    padding: 1.1rem 1.25rem;
    font-size: .97rem;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, var(--primary, #1a237e), #0d1b6e);
    box-shadow: none;
}

.accordion-button::after {
    transition: all .3s;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: #fff;
    color: var(--gray-700);
    font-size: .95rem;
    line-height: 1.7;
}

/* ==========================================================================
   PAIN POINT & WHY CHOOSE SECTION
   ========================================================================== */
.pain-point-section {
    background: linear-gradient(135deg, #0a0e27 0%, var(--gray-900) 50%, #0d1b6e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pain-point-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 111, 0, .08) 0%, transparent 60%);
}

.pain-point-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition-base);
}

.pain-point-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(8px);
    border-color: rgba(255, 111, 0, .4);
}

.pain-icon {
    color: #ff5252;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.solution-card {
    background: #fff;
    color: var(--text-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.solution-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.solution-list-item i {
    font-size: 1.4rem;
    color: var(--secondary, #ff6f00);
    flex-shrink: 0;
}

/* ==========================================================================
   TIMELINE - HOW IT WORKS
   ========================================================================== */
.timeline-wrapper {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary, #1a237e), var(--secondary, #ff6f00));
    transform: translateX(-50%);
    opacity: .25;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    width: 50%;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    right: -11px;
    top: 14px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--secondary, #ff6f00), var(--primary, #1a237e));
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, .2);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -11px;
    right: auto;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--secondary, #ff6f00);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: .6rem;
}

.timeline-content p {
    font-size: .93rem;
    color: var(--gray-600);
    margin: 0;
}

/* ==========================================================================
   SOCIAL PROOF / STAT CARDS
   ========================================================================== */
.stat-card {
    background: #fff;
    padding: 2.2rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary, #ff6f00), var(--primary, #1a237e));
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary, #ff6f00);
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary, #1a237e);
    margin-bottom: .25rem;
    line-height: 1;
    display: block;
}

.stat-text {
    color: var(--gray-500);
    font-weight: 600;
    font-size: .93rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
    background: #fff;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin: .75rem;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(26, 35, 126, .06);
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 700;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.star-rating {
    color: #ffb300;
    margin-bottom: .9rem;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: .97rem;
    line-height: 1.75;
    min-height: 80px;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #1a237e), var(--secondary, #ff6f00));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.client-details h5 {
    margin: 0;
    font-size: 1rem;
}

.client-details p {
    margin: 0;
    font-size: .83rem;
    color: var(--gray-500);
}

.testimonial-pagination {
    margin-top: 1.5rem;
    text-align: center;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--primary, #1a237e);
    opacity: .3;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary, #ff6f00);
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card .overflow-hidden img,
.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-img,
.blog-card:hover .overflow-hidden img {
    transform: scale(1.06);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-title a:hover {
    color: var(--primary, #1a237e);
}

.blog-meta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.transition-hover-primary:hover {
    color: var(--primary, #1a237e) !important;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary, #ff6f00);
}

.form-control,
.form-select {
    padding: .72rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-300);
    font-size: .97rem;
    transition: all var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary, #1a237e);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, .12);
}

.form-label {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .4rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, #0a0e27 0%, var(--footer-bg, #0d1b6e) 60%, #06091a 100%);
    color: var(--footer-text, #e0e0e0);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-top {
    padding: 4rem 0 2.5rem;
    position: relative;
}

.footer-top-border {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .3);
}

.footer-brand-name {
    color: #fff;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

.footer-brand-name span {
    color: var(--secondary, #ff6f00);
}

.footer-desc {
    color: rgba(255, 255, 255, .65);
    margin-bottom: 1.5rem;
    font-size: .93rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: .95rem;
    border: 1px solid rgba(255, 255, 255, .12);
}

.social-icon:hover {
    background: var(--secondary, #ff6f00);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 111, 0, .35);
    border-color: transparent;
}

.social-wa {
    background: #25D366;
    border-color: #25D366;
}

.social-wa:hover {
    background: #128C7E;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--secondary, #ff6f00);
    border-radius: 2px;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 10px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    color: var(--secondary, #ff6f00);
    margin-top: 3px;
    font-size: .9rem;
    flex-shrink: 0;
}

.footer-links a,
.footer-contact-list a {
    color: rgba(255, 255, 255, .65);
    transition: all var(--transition-base);
    font-size: .93rem;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-badge {
    margin-top: 1.5rem;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    border: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom {
    background: rgba(0, 0, 0, .25);
    padding: 1.25rem 0;
    font-size: .88rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    position: relative;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, .55);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    z-index: 9999;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #fff;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

.chatbot-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 9998;
}

.chatbot-trigger {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #1a237e), #0d1b6e);
    color: #fff;
    border: none;
    font-size: 22px;
    box-shadow: 0 4px 18px rgba(26, 35, 126, .4);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(26, 35, 126, .5);
}

.chatbot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff5252;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: .72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chatbot-window {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 360px;
    height: 460px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: .3s cubic-bezier(.175, .885, .32, 1.275);
    opacity: 0;
}

.chatbot-window.active {
    transform: scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary, #1a237e), #0d1b6e);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-info h5 {
    margin: 0;
    font-size: .97rem;
}

.chatbot-status {
    font-size: .78rem;
    opacity: .8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-status i {
    font-size: .5rem;
    color: #4ade80;
}

.chatbot-controls {
    margin-left: auto;
}

.chatbot-close {
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, .3);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.bot-message {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    margin-bottom: .75rem;
    font-size: .9rem;
}

.lang-btns {
    display: flex;
    gap: 8px;
    margin-top: .5rem;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-300);
    background: #fff;
    cursor: pointer;
    font-size: .82rem;
    transition: all .2s;
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--primary, #1a237e);
    background: var(--primary, #1a237e);
    color: #fff;
}

.chatbot-input-area {
    border-top: 1px solid var(--gray-200);
    padding: .75rem;
}

.chatbot-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input-row input {
    flex: 1;
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    padding: .5rem 1rem;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
}

.chatbot-input-row input:focus {
    border-color: var(--primary, #1a237e);
}

.voice-btn,
.send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .2s;
}

.voice-btn {
    background: var(--gray-100);
    color: var(--gray-600);
}

.send-btn {
    background: var(--primary, #1a237e);
    color: #fff;
}

.send-btn:hover {
    background: var(--secondary, #ff6f00);
}

/* ==========================================================================
   POST / BLOG DETAIL
   ========================================================================== */
.post-detail-header {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.post-content-body {
    border-radius: var(--radius-xl);
}

.entry-content h2,
.entry-content h3 {
    color: var(--heading-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.entry-content p {
    margin-bottom: 1.4rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: .4rem;
    line-height: 1.7;
}

.entry-content img {
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--secondary, #ff6f00);
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    margin: 1.5rem 0;
}

/* ==========================================================================
   MISCELLANEOUS
   ========================================================================== */
/* Splash kept in case needed */
.splash-screen {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, visibility .5s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-item.active .page-link {
    background: var(--primary, #1a237e);
    border-color: var(--primary, #1a237e);
}

.page-link:focus {
    box-shadow: 0 0 0 .25rem rgba(26, 35, 126, .25);
}

.badge.bg-primary {
    background: var(--primary, #1a237e) !important;
}

.text-primary {
    color: var(--primary, #1a237e) !important;
}

/* AOS overrides */
[data-aos] {
    transition-duration: .8s !important;
}

/* Utility */
.font-heading {
    font-family: var(--font-heading);
}

.bg-primary-brand {
    background: var(--primary, #1a237e) !important;
}

.bg-secondary-brand {
    background: var(--secondary, #ff6f00) !important;
}

.rounded-brand {
    border-radius: var(--radius) !important;
}