/* =========================================
   NKTPe - Main Stylesheet
   Color: #0F4C75 | #3282B8 | #00B4D8
   Font: Poppins
   ========================================= */

:root {
    --bg: #F8F9FA;
    --primary: #0F4C75;
    --secondary: #3282B8;
    --accent: #00B4D8;
    --text: #212529;
    --success: #2ECC71;
    --error: #E63946;
    --white: #ffffff;
    --dark: #0a0a0a;
    --gray-light: #f1f3f5;
    --gray: #6c757d;
    --shadow: 0 10px 40px rgba(15,76,117,0.15);
    --shadow-lg: 0 20px 60px rgba(15,76,117,0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --font: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), #0a2d4a);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: white; display:flex; flex-direction:column; align-items:center; justify-content:center; width:100%; }
.preloader-logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.preloader-logo span { color: var(--accent); }
.preloader-bar {
    width: 260px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    align-self: center;
}
.preloader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 10px;
    animation: fillBar 2s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }
.preloader-inner p { font-size: 0.8rem; opacity: 0.7; letter-spacing: 1px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    z-index: 9000;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    z-index: 9000;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
#back-to-top.show { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); }

/* ===== SECTION TITLE ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(50,130,184,0.1));
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(0,180,216,0.2);
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title span { color: var(--accent); }
.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
}
.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 1rem 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100vw;
    height: 80vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Prev / Next buttons */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
}
.hero-carousel-btn:hover {
    background: rgba(0,180,216,0.7);
    transform: translateY(-50%) scale(1.1);
}
.hero-carousel-btn.prev { left: 1.5rem; }
.hero-carousel-btn.next { right: 1.5rem; }

/* Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 28px;
    border-radius: 5px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,76,117,0.92) 0%, rgba(10,45,74,0.85) 50%, rgba(0,180,216,0.3) 100%);
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}
.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0,180,216,0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-row { min-height: 80vh; }
.hero-glass-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,216,0.2);
    border: 1px solid rgba(0,180,216,0.4);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--accent); }
.hero-heading {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero-heading .accent { color: var(--accent); }
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), #0077a8);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,180,216,0.4);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.4s;
}
.btn-hero-primary:hover::after { transform: translateX(0); }
.btn-hero-primary:hover { transform: translateY(-3px); color: white; box-shadow: 0 15px 40px rgba(0,180,216,0.5); }

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; transform: translateY(-3px); }

.hero-stats-mini { display: flex; gap: 2rem; }
.hero-stat-item { text-align: center; }
.hero-stat-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.hero-stat-item span { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Right Side Floating Cards */
.hero-cards-wrap { position: relative; height: 500px; }
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    min-width: 220px;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; }
.hero-float-card:nth-child(2) { top: 35%; right: 0%; animation-delay: 1s; }
.hero-float-card:nth-child(3) { bottom: 10%; left: 15%; animation-delay: 2s; }
@keyframes floatCard {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
.hfc-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.8rem; font-size: 1.3rem; }
.hfc-title { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.2rem; }
.hfc-value { font-size: 1.4rem; font-weight: 800; }
.hfc-change { font-size: 0.75rem; color: var(--success); }

/* ===== LEFT STICKY SIDEBAR ===== */
.left-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
}
.sidebar-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--primary);
    color: white;
    padding: 15px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0 8px 8px 0;
}
.sidebar-tab:hover { background: var(--accent); }
.sidebar-panel {
    position: fixed;
    left: -320px;
    top: 50%;
    transform: translateY(-50%);
    width: 310px;
    background: white;
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    z-index: 499;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: 80vh;
    overflow-y: auto;
}
.sidebar-panel.open { left: 0; }
.sidebar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
}
.sidebar-panel h5 { color: var(--primary); font-weight: 800; margin-bottom: 1.2rem; }
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { margin-bottom: 0.5rem; }
.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.sidebar-links a:hover { background: var(--gray-light); color: var(--primary); }
.sidebar-links a i { color: var(--accent); width: 18px; }
.sidebar-cta-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: var(--transition);
}
.sidebar-cta-btn:hover { background: linear-gradient(135deg, var(--accent), var(--primary)); color: white; transform: translateY(-2px); }

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a6fa3 50%, var(--secondary) 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
}
.stat-card {
    text-align: center;
    color: white;
    position: relative;
    padding: 1.2rem 1rem;
}
.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}
.stat-card:last-child::after { display: none; }
.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.6rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.stat-number { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 0.2rem; }
.stat-label { font-size: 0.72rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 6rem 0; background: var(--bg); }
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(15,76,117,0.06);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(0,180,216,0.3); }
.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img-wrap img { width: 100%; height: 100%;  transition: transform 0.6s; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,76,117,0.85), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.service-card:hover .service-overlay { opacity: 1; }
.service-overlay-text { color: white; font-weight: 600; font-size: 0.85rem; }
.service-icon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(15,76,117,0.4);
}
.service-body { padding: 1.5rem; }
.service-body h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.service-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--primary); }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 6rem 0; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.about-badge-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: white;
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 4px solid var(--accent);
}
.about-badge-card .num { font-size: 2rem; font-weight: 900; color: var(--primary); display: block; }
.about-badge-card span { font-size: 0.78rem; color: var(--gray); }
.about-feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(15,76,117,0.1);
    font-size: 0.9rem;
}
.about-feature-list li i { color: var(--success); font-size: 1rem; margin-top: 2px; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 6rem 0; background: linear-gradient(180deg, #edf4ff 0%, var(--bg) 100%); }
.why-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 25px rgba(15,76,117,0.08);
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(0,180,216,0.3); box-shadow: var(--shadow); }
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(15,76,117,0.1), rgba(0,180,216,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }
.why-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== AEPS PROMO BANNER ===== */
.aeps-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d3a5c 100%);
    position: relative;
    overflow: hidden;
}
.aeps-banner::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0,180,216,0.08);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}
.aeps-banner-tag { color: var(--accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem; }
.aeps-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white; margin-bottom: 1rem; }
.aeps-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.aeps-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.aeps-features li { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 10px; margin-bottom: 0.7rem; font-size: 0.9rem; }
.aeps-features li i { color: var(--accent); }
.aeps-img-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.aeps-amount { font-size: 3rem; font-weight: 900; color: var(--accent); }

/* ===== API SECTION ===== */
.api-section { padding: 6rem 0; background: #0a0f1a; }
.api-section .section-title { color: white; }
.api-section .section-subtitle { color: rgba(255,255,255,0.6); }
.api-code-card {
    background: #0d1117;
    border-radius: var(--radius);
    border: 1px solid rgba(0,180,216,0.2);
    overflow: hidden;
}
.code-header {
    background: #161b22;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0,180,216,0.1);
}
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.cd-red { background: #ff5f57; }
.cd-yellow { background: #ffbd2e; }
.cd-green { background: #28ca41; }
.code-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-left: auto; font-family: monospace; }
.code-body { padding: 1.5rem; font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 2; overflow-x: auto; }
.code-line { display: block; }
.code-key { color: #79c0ff; }
.code-str { color: #a5d6ff; }
.code-val { color: #7ee787; }
.code-bracket { color: #e6edf3; }
.code-comment { color: #8b949e; }
.code-method { color: #d2a8ff; }

.api-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,180,216,0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
}
.api-feature-card:hover { background: rgba(0,180,216,0.08); border-color: rgba(0,180,216,0.4); }
.api-feature-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; }
.api-feature-card h6 { color: white; font-weight: 700; margin-bottom: 0.5rem; }
.api-feature-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 6rem 0; background: var(--bg); }
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover { border-color: rgba(0,180,216,0.3); transform: translateY(-5px); }
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(0,180,216,0.1);
}
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
}
.t-author-name { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.t-author-role { font-size: 0.78rem; color: var(--gray); }

/* ===== PARTNERS ===== */
.partners-section { padding: 4rem 0; background: white; }
.partners-track { display: flex; gap: 3rem; animation: scroll-partners 20s linear infinite; width: max-content; }
.partners-wrap { overflow: hidden; }
.partner-logo {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    min-width: 160px;
    font-weight: 700;
    color: var(--gray);
    font-size: 0.9rem;
    border: 1px solid rgba(15,76,117,0.08);
    transition: var(--transition);
}
@keyframes scroll-partners { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== FAQ ===== */
.faq-section { padding: 6rem 0; }
.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    border: 1px solid rgba(15,76,117,0.08);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,180,216,0.3); box-shadow: 0 4px 20px rgba(0,180,216,0.1); }
.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    gap: 1rem;
}
.faq-question i { color: var(--accent); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s;
}
.faq-answer.open { max-height: 200px; padding: 0 1.5rem 1.2rem; }
.faq-answer p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ===== CONTACT CTA ===== */
.contact-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary), var(--primary));
    position: relative;
    overflow: hidden;
}
.contact-cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    left: -100px;
}
.contact-cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 1rem; }
.contact-cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.btn-cta-white {
    background: white;
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-cta-white:hover { transform: translateY(-3px); color: var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* ===== APP DOWNLOAD ===== */
.app-section { padding: 5rem 0; background: linear-gradient(180deg, var(--bg) 0%, #e8f4ff 100%); }
.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}
.app-btn:hover { background: transparent; border-color: var(--primary); color: var(--primary); }
.app-btn i { font-size: 1.8rem; }
.app-btn-text { line-height: 1.2; }
.app-btn-text small { font-size: 0.7rem; display: block; opacity: 0.8; }
.app-btn-text strong { font-size: 1rem; display: block; }
.app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-phone {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 40px;
    width: 240px;
    height: 480px;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
}
.phone-screen { padding: 2rem 1.2rem; color: white; }
.phone-notch { width: 80px; height: 8px; background: rgba(0,0,0,0.3); border-radius: 4px; margin: 0 auto 1.5rem; }
.phone-header { font-size: 0.75rem; opacity: 0.7; margin-bottom: 1.5rem; }
.phone-balance { font-size: 0.7rem; opacity: 0.7; margin-bottom: 0.3rem; }
.phone-amount { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.phone-actions { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; }
.phone-action { flex: 1; background: rgba(255,255,255,0.1); border-radius: 10px; padding: 0.8rem 0.3rem; text-align: center; font-size: 0.65rem; }
.phone-action i { display: block; font-size: 1.1rem; margin-bottom: 0.3rem; }
.phone-txn-list { font-size: 0.7rem; }
.phone-txn { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); opacity: 0.85; }

/* ===== PAGE BANNER ===== */
.page-banner {
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,35,60,0.82) 0%, rgba(15,76,117,0.75) 60%, rgba(0,100,160,0.70) 100%);
    z-index: 0;
}
.page-banner .container-fluid { position: relative; z-index: 2; }
.page-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,180,216,0.12);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    z-index: 1;
}
.page-banner h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 0.5rem; }
.breadcrumb-custom { background: transparent; padding: 0; margin: 0; }
.breadcrumb-custom .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item.active { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(15,76,117,0.3);
}
.btn-primary-custom:hover { transform: translateY(-3px); color: white; box-shadow: var(--shadow-lg); }
.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent), #0099b8);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(0,180,216,0.3);
}
.btn-accent-custom:hover { transform: translateY(-3px); color: white; box-shadow: 0 12px 35px rgba(0,180,216,0.5); }
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* ===== UTILITY ===== */
.py-section { padding: 6rem 0; }
.bg-light-blue { background: linear-gradient(180deg, #f0f7ff 0%, var(--bg) 100%); }
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.separator-wave { line-height: 0; }
.separator-wave svg { display: block; width: 100%; }