/* OASSE Rebranding Custom Styles */
/* Modern, Clean, Tech-savvy Design */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Variables */
:root {
    --primary-blue-dark: #0A2463;
    --primary-blue: #153892;
    --primary-cyan: #00D4FF;
    --accent-orange: #FF6910;
    --accent-orange-hover: #FF8400;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #2C3E50;
    --text-gray: #6C757D;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(21, 56, 146, 0.15);
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Blue Gradient Backgrounds */
.gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-cyan) 100%);
}

.gradient-blue-soft {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}

/* Hero Section Rebranded */
.rebrand-hero {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.85) 0%, rgba(21, 56, 146, 0.85) 50%, rgba(0, 212, 255, 0.75) 100%),
        url('../images/rebrand/futuristic_banner_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Futuristic background pattern overlay */
.rebrand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    z-index: 1;
}

/* Floating geometric shapes */
.rebrand-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.rebrand-hero .hero-content {
    position: relative;
    z-index: 2;
}

.rebrand-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.rebrand-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 400;
}

/* Wave divider at bottom of hero */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
    border: none;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    border: none;
}

.hero-wave-divider .shape-fill {
    fill: #f8f9fa;
}

/* Solution Cards */
.solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(21, 56, 146, 0.15);
    border-color: var(--primary-cyan);
}

.solution-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card .icon-wrapper img {
    max-width: 100%;
    height: auto;
}

.solution-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Value Proposition Cards */
.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(255, 105, 16, 0.15);
}

.value-card .icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.value-card h6 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Industry Tabs */
.industry-tabs {
    margin-top: 40px;
}

.industry-tabs .nav-tabs {
    border-bottom: 2px solid rgba(21, 56, 146, 0.1);
    justify-content: center;
}

.industry-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-gray);
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.industry-tabs .nav-link:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-cyan);
}

.industry-tabs .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--accent-orange);
    background: transparent;
}

.industry-content {
    padding: 40px 0;
}

/* Buttons */
.btn-orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8400 100%);
    color: var(--white);
    border: none;
    padding: 0;
    min-height: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(255, 105, 16, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    text-decoration: none;
    line-height: 1;
    vertical-align: middle;
}

.btn-orange:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 105, 16, 0.5);
    color: var(--white);
    text-decoration: none;
}

.btn-blue-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0;
    min-height: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    text-decoration: none;
    line-height: 1;
    vertical-align: middle;
}

.btn-blue-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Icon inside button alignment */
.btn-orange i,
.btn-blue-outline i {
    margin-right: 8px;
    font-size: 1.1rem;
    line-height: 1;
    vertical-align: middle;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    padding: 60px 0;
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Client Logo Wall */
.client-logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.client-logo-wall img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo-wall img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(21, 56, 146, 0.12);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary-cyan);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card .content {
    font-style: italic;
    color: var(--text-dark);
    margin: 20px 0;
    line-height: 1.7;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-blue-dark);
}

.testimonial-card .author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Pricing Section (No Table) */
.pricing-cta-section {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
    padding: 80px 0;
    text-align: center;
}

.pricing-cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
}

.pricing-cta-section p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-cta-section .btn-orange {
    font-size: 1.1rem;
    padding: 18px 48px;
}

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

.section-title-rebrand {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-rebrand h2 {
    font-size: 2.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 16px;
}

.section-title-rebrand p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .rebrand-hero h1 {
        font-size: 2.2rem;
    }

    .rebrand-hero p {
        font-size: 1.1rem;
    }

    .section-title-rebrand h2 {
        font-size: 2rem;
    }

    .stat-item .number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* White Space Optimization */
.spacer-sm {
    height: 40px;
}

.spacer-md {
    height: 60px;
}

.spacer-lg {
    height: 80px;
}

/* Footer Area - Match Banner Style */
.footer-area {
    /* Gradasi biru dari gelap (atas) ke lebih gelap (bawah) - kebalikan dari banner */
    background: linear-gradient(180deg, #0a1628 0%, #0d1b35 25%, #15294d 50%, #1e3a6d 75%, #2D4A7C 100%) !important;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

/* Plus (+) Pattern Overlay - Same as Banner */
.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* Pola plus dengan spacing yang tepat */
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(255, 255, 255, 0.06) 19px, rgba(255, 255, 255, 0.06) 21px, transparent 21px, transparent 40px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255, 255, 255, 0.06) 19px, rgba(255, 255, 255, 0.06) 21px, transparent 21px, transparent 40px);
    background-size: 40px 40px;
    background-position: 0 0;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

/* Subtle glow overlay for footer */
.footer-area::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.footer-widget-area,
.footer-bottom {
    position: relative;
    z-index: 2;
}

/* Footer Widget Styling */
.footer-area .footer-widget {
    margin-bottom: 30px;
}

.footer-area .widget-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.footer-area .about_us_widget p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-area .widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-area .widget_nav_menu ul li {
    margin-bottom: 12px;
}

.footer-area .widget_nav_menu ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-area .widget_nav_menu ul li a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-area .widget_nav_menu ul li a::before {
    content: '›';
    margin-right: 8px;
    color: var(--primary-cyan);
}

/* Social Icons */
.footer-area .social-icon {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-area .social-icon li {
    list-style: none;
}

.footer-area .social-icon li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-area .social-icon li a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 105, 16, 0.4);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.footer-newsletter h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.footer-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .newsletter-form button {
    padding: 12px 24px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter .newsletter-form button:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 16, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
}

.footer-bottom .copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom .copyright-text a {
    color: var(--accent-orange);
    text-decoration: none;
}

.footer-bottom .copyright-text a:hover {
    text-decoration: underline;
}

/* ========== PAGINATION STYLING ========== */
.riyaqas-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.riyaqas-pagination a,
.riyaqas-pagination strong {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    line-height: 1;
}

.riyaqas-pagination a:hover {
    background: #FFFFFF;
    color: #FF6910;
    border-color: #FF6910;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 16, 0.25);
    text-decoration: none;
}

.riyaqas-pagination strong {
    background: linear-gradient(135deg, #FF6910 0%, #FF8400 100%);
    color: #FFFFFF;
    border-color: #FF6910;
    box-shadow: 0 4px 12px rgba(255, 105, 16, 0.35);
    cursor: default;
}

.riyaqas-pagination strong:hover {
    transform: none;
}

@media (max-width: 576px) {
    .riyaqas-pagination {
        gap: 6px;
    }

    .riyaqas-pagination a,
    .riyaqas-pagination strong {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
}