/* ============================================
   MUTIARA JASA - Main Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    --primary: #1a237e;
    --primary-dark: #0d1b5e;
    --primary-light: #283593;
    --secondary: #0d47a1;
    --accent: #ff6f00;
    --accent-light: #ff8f00;
    --accent-gradient: linear-gradient(135deg, #ff6f00, #ff8f00);
    
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-light: #7a7a9a;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    
    --gradient-main: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,35,126,0.92) 0%, rgba(13,71,161,0.88) 50%, rgba(21,101,192,0.85) 100%);
    
    --shadow-sm: 0 2px 8px rgba(26,35,126,0.06);
    --shadow-md: 0 4px 20px rgba(26,35,126,0.1);
    --shadow-lg: 0 8px 40px rgba(26,35,126,0.12);
    --shadow-hover: 0 12px 48px rgba(26,35,126,0.18);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Section Styles --- */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 10px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
}

/* --- Buttons --- */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: var(--gradient-main);
    color: #fff;
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,111,0,0.35);
    color: #fff;
}

.btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR — Premium Modern Style
   ============================================ */
.navbar-main {
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Scrolled state — glassmorphism putih premium */
.navbar-main.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 30px rgba(26,35,126,0.08), 0 1px 0 rgba(26,35,126,0.04);
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,35,126,0.06);
}

/* Subpage state — putih solid */
.navbar-main.subpage {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 30px rgba(26,35,126,0.08), 0 1px 0 rgba(26,35,126,0.04);
    border-bottom: 1px solid rgba(26,35,126,0.06);
}

/* --- Brand / Logo --- */
.navbar-main .navbar-brand {
    padding: 0;
    margin-right: 40px;
}

.navbar-main .navbar-brand img {
    transition: var(--transition);
    height: 44px;
}

.navbar-main .logo-dark { display: none; }
.navbar-main .logo-light { display: block; }

.navbar-main.scrolled .logo-dark,
.navbar-main.subpage .logo-dark {
    display: block;
}
.navbar-main.scrolled .logo-light,
.navbar-main.subpage .logo-light {
    display: none;
}

/* --- Nav Links Container --- */
.navbar-main .navbar-nav {
    gap: 6px;
}

/* --- Individual Nav Link --- */
.navbar-main .nav-item {
    position: relative;
}

.navbar-main .nav-link {
    color: rgba(255,255,255,0.88);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

/* Hover lift effect */
.navbar-main .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

/* Active link — pill style with gradient */
.navbar-main .nav-link.active {
    color: #fff;
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(255,111,0,0.3);
}

/* Active link subtle glow animation */
@keyframes activePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255,111,0,0.3); }
    50% { box-shadow: 0 4px 25px rgba(255,111,0,0.45); }
}
.navbar-main .nav-link.active {
    animation: activePulse 3s ease-in-out infinite;
}

/* --- Scrolled state links --- */
.navbar-main.scrolled .nav-link,
.navbar-main.subpage .nav-link {
    color: var(--text-dark);
}

.navbar-main.scrolled .nav-link:hover,
.navbar-main.subpage .nav-link:hover {
    color: var(--primary);
    background: rgba(26,35,126,0.06);
    transform: translateY(-1px);
}

.navbar-main.scrolled .nav-link.active,
.navbar-main.subpage .nav-link.active {
    color: #fff;
    background: var(--gradient-main);
    box-shadow: 0 4px 15px rgba(26,35,126,0.25);
    animation: activePulse 3s ease-in-out infinite;
}

/* --- CTA Button in Nav --- */
.navbar-main .nav-cta {
    margin-left: 10px;
}

.navbar-main .nav-cta .nav-link {
    background: var(--accent-gradient);
    color: #fff !important;
    padding: 8px 24px !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,111,0,0.25);
}

.navbar-main .nav-cta .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,111,0,0.35);
    background: var(--accent-gradient);
}

.navbar-main.scrolled .nav-cta .nav-link,
.navbar-main.subpage .nav-cta .nav-link {
    background: var(--accent-gradient);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255,111,0,0.25);
}

.navbar-main.scrolled .nav-cta .nav-link:hover,
.navbar-main.subpage .nav-cta .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,111,0,0.35);
}

/* --- Navbar Toggler (Hamburger) — animated --- */
.navbar-main .navbar-toggler {
    border: none;
    padding: 6px;
    width: 44px;
    height: 44px;
    position: relative;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.navbar-main.scrolled .navbar-toggler,
.navbar-main.subpage .navbar-toggler {
    background: rgba(26,35,126,0.08);
    border-color: rgba(26,35,126,0.08);
}

.navbar-main .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-main .navbar-toggler-icon {
    background-image: none;
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    transition: all 0.3s;
    margin: 0 auto;
}

.navbar-main.scrolled .navbar-toggler-icon,
.navbar-main.subpage .navbar-toggler-icon {
    background: var(--primary);
}

/* Create 3-line hamburger using pseudo-elements */
.navbar-main .navbar-toggler-icon::before,
.navbar-main .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: all 0.3s;
}

.navbar-main .navbar-toggler-icon::before {
    top: -7px;
}

.navbar-main .navbar-toggler-icon::after {
    top: 7px;
}

/* Animated X when toggled */
.navbar-main .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-main .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
}

.navbar-main .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
}

.navbar-main.scrolled .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-main.scrolled .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after,
.navbar-main.subpage .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-main.subpage .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    background: var(--primary);
}

/* --- Mobile Nav --- */
@media (max-width: 991px) {
    .navbar-main .navbar-collapse {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px);
        border-radius: 16px;
        margin-top: 16px;
        padding: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        border: 1px solid rgba(26,35,126,0.06);
    }

    .navbar-main .navbar-nav {
        gap: 2px;
    }

    .navbar-main .nav-link {
        color: var(--text-dark) !important;
        padding: 12px 16px !important;
        font-size: 14px;
        border-radius: 10px;
    }

    .navbar-main .nav-link.active {
        color: #fff !important;
        background: var(--gradient-main) !important;
    }

    .navbar-main .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .navbar-main .nav-cta .nav-link {
        text-align: center;
    }
}

/* ============================================
   HERO — Banner Slider
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* --- Slider Container --- */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Gradient overlay at bottom of hero */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26,35,126,0.4) 0%, transparent 100%);
    z-index: 1;
}

/* --- Content Wrapper --- */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
}

.hero-content .badge-hero {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 540px;
    margin-bottom: 36px;
    text-shadow: 0 1px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-buttons .btn {
    margin-right: 12px;
    margin-bottom: 10px;
}

/* --- Stats --- */
.hero-stats {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item {
    text-align: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item .number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.hero-stat-item .label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

/* --- Illustration Card --- */
.hero-illustration {
    position: relative;
}

.hero-illustration .hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-item:last-child {
    border-bottom: none;
}

.hero-card-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-card-item .text h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px;
}

.hero-card-item .text span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    display: block;
    line-height: 1.3;
}

/* --- Slider Dots --- */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.6);
}

/* --- Slider Arrows --- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.hero-section:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-illustration {
        margin-top: 40px;
    }
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .hero-arrow-prev { left: 12px; }
    .hero-arrow-next { right: 12px; }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 130px 0 80px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-stats {
        margin-top: 36px;
        padding-top: 24px;
    }
    .hero-stat-item {
        padding: 8px 4px;
    }
    .hero-stat-item .number {
        font-size: 22px;
    }
    .hero-dots {
        bottom: 20px;
    }
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   ABOUT SECTION (Home)
   ============================================ */
.about-section {
    position: relative;
    overflow: hidden;
}

/* Image card */
.about-image-wrapper {
    position: relative;
}

.about-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,35,126,0.1);
}

/* Decorative gradient border frame */
.about-img-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.6;
}

.about-img-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
}

.about-img-card img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-card:hover img {
    transform: scale(1.05);
}



/* Floating accent shapes */
.about-shape-1 {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--accent-gradient);
    opacity: 0.12;
    z-index: 0;
    transform: rotate(15deg);
}

.about-shape-2 {
    position: absolute;
    bottom: 40px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.08;
    z-index: 0;
}

/* Experience badge — modern stacked */
.about-image-wrapper .experience-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 20px 26px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(255,111,0,0.35);
    z-index: 3;
    min-width: 120px;
    border: 2px solid rgba(255,255,255,0.2);
}

.experience-badge .number {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.experience-badge .text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

/* Decorative dots pattern */
.about-dots {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 22px 22px;
    opacity: 0.12;
    z-index: 0;
    border-radius: 24px;
}

/* Content */
.about-content {
    padding-left: 10px;
}

/* ============================================
   ABOUT PAGE — Centered Cover Layout
   ============================================ */
.about-cover-wrap .about-img-card {
    max-width: 700px;
    margin: 0 auto;
}

.about-cover-wrap .about-img-card img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.about-cover-content .about-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255,111,0,0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.about-cover-content h2 {
    font-size: 32px;
    line-height: 1.2;
}

.about-cover-content .about-full-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .about-float-content .about-full-content {
        column-count: 1;
    }
}

@media (max-width: 991px) {
    .about-float-image {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.about-content .about-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    background: rgba(255,111,0,0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-content .about-excerpt p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0;
}

.about-full-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 16px;
}

.about-full-content ul {
    padding-left: 24px;
    margin-bottom: 20px;
    list-style: disc;
}

.about-full-content ul ul {
    list-style: circle;
    margin-top: 8px;
    margin-bottom: 8px;
}

.about-full-content li {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 6px;
}

.about-full-content li strong {
    color: var(--primary);
}

/* Accent divider line */
.bg-accent-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Mini stats */
.about-mini-stat {
    background: var(--bg-light);
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(26,35,126,0.04);
}

.about-mini-stat small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Override btn-outline-secondary for about */
.btn-outline-secondary {
    color: var(--text-dark);
    border: 2px solid #e2e5ec;
    background: transparent;
}
.btn-outline-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .about-image-wrapper .experience-badge {
        bottom: 16px;
        right: 16px;
        padding: 14px 18px;
        min-width: 90px;
    }
    .experience-badge .number {
        font-size: 28px;
    }
    .about-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   SERVICES
   ============================================ */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26,35,126,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(26,35,126,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--gradient-main);
    color: #fff;
}

.service-card h5 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   SERVICES PAGE — Modern Cards
   ============================================ */
.service-card-modern {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    text-align: left;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(26,35,126,0.04);
    box-shadow: 0 4px 20px rgba(26,35,126,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.4s ease;
    border-radius: 0 0 2px 2px;
}

.service-card-modern:hover::before {
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,35,126,0.1);
    border-color: rgba(255,111,0,0.1);
}

.service-card-modern .sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(26,35,126,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card-modern:hover .sc-icon {
    background: var(--gradient-main);
    color: #fff;
    transform: scale(1.05);
}

.service-card-modern h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card-modern p {
    font-size: 14px;
    color: var(--text-light);
    flex: 1;
}

.service-card-modern .sc-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(26,35,126,0.04);
}

.service-card-modern .sc-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-card-modern .sc-cta:hover {
    gap: 10px;
    color: var(--accent);
}

/* Intro section */
.services-intro {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(26,35,126,0.04);
    border: 1px solid rgba(26,35,126,0.04);
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.services-intro .about-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255,111,0,0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.services-intro h2 {
    font-size: 30px;
}

.services-intro-stats .sis-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(26,35,126,0.04);
}

.sis-card .sis-number {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.sis-card .sis-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* CTA section */
.services-cta-section {
    padding: 0 0 80px;
}

.services-cta-card {
    background: var(--gradient-main);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.services-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,111,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

@media (max-width: 767px) {
    .services-intro {
        padding: 24px;
    }
    .services-cta-card {
        padding: 28px;
    }
    .services-cta-card .text-lg-end {
        text-align: left !important;
        margin-top: 16px;
    }
}

/* ============================================
   STATS / COUNTER
   ============================================ */
.stats-section {
    background: var(--gradient-main);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/hero-bg-pattern.png') repeat;
    opacity: 0.03;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-item .number {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.1;
}

.stat-item .label {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(26,35,126,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h5 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

/* ============================================
   CLIENTS / PARTNERS — Marquee Cards
   ============================================ */
.client-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.client-marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: clientScroll 60s linear infinite;
}

.client-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes clientScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 24px 20px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(26,35,126,0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,35,126,0.1);
    border-color: rgba(255,111,0,0.15);
}

.client-card-logo {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.client-card:hover .client-card-logo {
    filter: grayscale(0%) opacity(1);
}

.client-card-logo img {
    max-height: 52px;
    max-width: 130px;
    object-fit: contain;
}

.client-card-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.client-card:hover .client-card-name {
    color: var(--primary);
}

@media (max-width: 767px) {
    .client-card {
        min-width: 140px;
        padding: 18px 14px 14px;
    }
    .client-card-logo {
        height: 40px;
    }
    .client-card-logo img {
        max-height: 40px;
        max-width: 100px;
    }
    .client-marquee-track {
        gap: 16px;
        animation-duration: 40s;
    }
}

/* ============================================
   TESTIMONIALS — Carousel Cards
   ============================================ */
.testi-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 16px 0 8px;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.testi-carousel-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: testiScroll 50s linear infinite;
}

.testi-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes testiScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card */
.testi-card {
    position: relative;
    min-width: 380px;
    max-width: 380px;
    background: #fff;
    border-radius: 20px;
    padding: 34px 30px 28px;
    box-shadow: 0 4px 20px rgba(26,35,126,0.04);
    border: 1px solid rgba(26,35,126,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(26,35,126,0.1);
    border-color: rgba(26,35,126,0.08);
}

/* Gradient top border */
.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 0 0 3px 3px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.testi-card:hover::before {
    opacity: 1;
}

/* Quote icon */
.testi-quote-icon {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 48px;
    color: rgba(26,35,126,0.04);
    line-height: 1;
    font-family: var(--font-primary);
}

/* Stars */
.testi-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 3px;
}

.testi-stars i {
    animation: starPop 0.4s ease both;
}
.testi-stars i:nth-child(2) { animation-delay: 0.08s; }
.testi-stars i:nth-child(3) { animation-delay: 0.16s; }
.testi-stars i:nth-child(4) { animation-delay: 0.24s; }
.testi-stars i:nth-child(5) { animation-delay: 0.32s; }

@keyframes starPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

/* Text */
.testi-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author */
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(26,35,126,0.04);
}

.testi-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    overflow: hidden;
    border: 2px solid rgba(255,111,0,0.15);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-author-info strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testi-author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26,35,126,0.12);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testi-dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255,111,0,0.3);
}

.testi-dot:hover {
    background: var(--accent);
    opacity: 0.6;
}

@media (max-width: 767px) {
    .testi-card {
        min-width: 280px;
        max-width: 280px;
        padding: 24px 20px 20px;
    }
    .testi-carousel-track {
        gap: 16px;
        animation-duration: 30s;
    }
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,35,126,0.04);
    border: 1px solid rgba(26,35,126,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,35,126,0.1);
}

.team-photo {
    overflow: hidden;
    background: var(--bg-light);
    line-height: 0;
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-photo-fallback {
    aspect-ratio: 1 / 1;
    background: var(--gradient-main);
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

.team-body {
    padding: 24px 20px;
    text-align: center;
}

.team-body h5 {
    font-size: 17px;
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.team-body p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   PAGE HEADER (Subpages)
   ============================================ */
.page-header {
    background: var(--gradient-main);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/hero-bg-pattern.png') repeat;
    opacity: 0.04;
}

.page-header h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ============================================
   NEWS
   ============================================ */
.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(26,35,126,0.05);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.news-card .image {
    height: 220px;
    overflow: hidden;
}

.news-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .image img {
    transform: scale(1.08);
}

.news-card .body {
    padding: 24px;
}

.news-card .date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card .date i {
    color: var(--accent);
}

.news-card .body h5 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card .body h5 a {
    color: var(--text-dark);
}

.news-card .body h5 a:hover {
    color: var(--primary);
}

.news-card .body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.news-card .body .read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card .body .read-more:hover {
    color: var(--accent);
}

/* News Detail */
.news-detail .featured-img {
    border-radius: var(--radius-md);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
}

.news-detail .meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-light);
}

.news-detail .meta i {
    color: var(--accent);
    margin-right: 6px;
}

.news-detail .content {
    line-height: 1.9;
    font-size: 16px;
}

.news-detail .content p {
    margin-bottom: 20px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(26,35,126,0.05);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(26,35,126,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info-card h6 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,35,126,0.05);
}

.contact-form-wrapper .form-control {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid #e8ecf2;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,35,126,0.08);
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contact Office Cards with Maps */
.contact-office-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,35,126,0.05);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.contact-office-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-office-card .office-header {
    padding: 28px 28px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-office-card .office-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(26,35,126,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-office-card .office-header h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-office-card .office-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(255,111,0,0.08);
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-office-card .office-info {
    padding: 0 28px 20px;
}

.contact-office-card .office-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.contact-office-card .office-info p i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-office-card .office-info p a {
    color: var(--accent);
    text-decoration: none;
}

.contact-office-card .office-info p a:hover {
    text-decoration: underline;
}

.contact-office-card .office-map {
    border-top: 1px solid #eef0f4;
}

.contact-office-card .office-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

/* Contact social links */
.social-links-contact {
    display: flex;
    gap: 10px;
}

.social-link-contact {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26,35,126,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link-contact:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding-top: 80px;
    position: relative;
}

.footer-widget .footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255,255,255,0.6);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.wa-float:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.btn-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
    padding: 120px 0;
    text-align: center;
}

.page-404 h1 {
    font-size: 120px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1;
}

.page-404 h3 {
    margin-top: 20px;
    margin-bottom: 12px;
}

.page-404 p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ============================================
   TRACKING (Hero section di home)
   ============================================ */
.tracking-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.tracking-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.tracking-box .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.tracking-box .form-control {
    padding: 14px 18px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 2px solid #e8ecf2;
    font-size: 15px;
    text-transform: uppercase;
}

.tracking-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,35,126,0.08);
}

.tracking-box .btn-tracking {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 28px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    font-weight: 600;
}

.tracking-box .btn-tracking:hover {
    opacity: 0.9;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .page-header {
        padding: 120px 0 60px;
    }
    .page-header h1 {
        font-size: 30px;
    }
    
    .hero-stat-item {
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    .contact-office-card .office-map iframe {
        height: 220px;
    }
    
    .stat-item .number {
        font-size: 32px;
    }
    
    .gallery-item img {
        height: 220px;
    }
}

/* Print styles */
@media print {
    .wa-float, .btn-top, .navbar-main {
        display: none !important;
    }
    body {
        padding-top: 0 !important;
    }
}
