/* ===== VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-color: #084D36;
    --primary-dark: #063a28;
    --primary-light: #0a6347;
    --accent-color: #CC9933;
    --accent-dark: #b3862e;
    --accent-light: #d6b15c;
    --support-color: #FFFF99;
    --support-dark: #e6e689;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark: #343a40;
    --black: #212529;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius: 12px;
    --box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-contact span {
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-contact span:hover {
    opacity: 1;
}

.top-bar-social a {
    color: var(--white);
    margin-left: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.top-bar-social a:hover {
    opacity: 1;
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95) !important;
}

.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.brand-logo i {
    font-size: 2rem;
    color: var(--accent-color);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-left: 0.5rem;
}

.brand-text strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.brand-text small {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(8, 77, 54, 0.05);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.navbar-nav .nav-link i {
    font-size: 0.875rem;
    width: 20px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* Navbar Actions */
.navbar-actions .btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 77, 54, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--support-color), var(--accent-color));
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.footer-brand .brand-text {
    margin-left: 0.75rem;
}

.footer-brand .brand-text strong {
    font-size: 1.75rem;
    color: var(--white);
}

.footer-brand .brand-text small {
    font-size: 1rem;
    color: var(--accent-color);
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-contact .contact-item:hover {
    opacity: 1;
}

.footer-contact .contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--support-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--support-color);
    transform: translateX(5px);
}

.footer-newsletter-desc {
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form .form-control:focus {
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.footer-social .social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright .divider {
    margin: 0 10px;
    opacity: 0.5;
}

.footer-copyright a {
    color: var(--support-color);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-payments .payment-icon {
    font-size: 1.5rem;
    margin-left: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-payments .payment-icon:hover {
    opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(204, 153, 51, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(204, 153, 51, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar-contact span {
        display: block;
        margin-bottom: 5px;
    }
    
    .top-bar-contact span.ms-3 {
        margin-left: 0 !important;
    }
    
    .top-bar-social {
        margin-top: 10px;
        text-align: center;
    }
    
    .top-bar-social a {
        margin: 0 8px;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .brand-text strong {
        font-size: 1.25rem;
    }
    
    .brand-text small {
        font-size: 0.75rem;
    }
    
    .navbar-actions {
        margin-top: 1rem;
        text-align: center;
    }
    
    .navbar-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
    
    .footer-copyright,
    .footer-payments {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--white);
}

/* ===== ENHANCED INDEX HERO STYLES ===== */
.hero-section-about .hero-content {
    position: relative;
    z-index: 20;
}

.hero-section-about .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-section-about .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero CTA Box */
.hero-cta {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin: 2rem 0;
}

.cta-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-domain {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tagline-badge {
    font-size: 0.9rem;
}

/* Floating Cards Positioning untuk Index */
.floating-stats .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    z-index: 25;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 160px;
}

.floating-stats .card-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

.floating-stats .card-2 {
    bottom: 30%;
    left: 3%;
    animation-delay: 1s;
}

.floating-stats .card-3 {
    top: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

.floating-stats .floating-card i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.floating-stats .floating-card div {
    text-align: left;
}

.floating-stats .floating-card .fw-bold {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.floating-stats .floating-card small {
    font-size: 0.7rem;
}

/* Service Icons Animation */
.service-icon-animation {
    z-index: 5;
}

.icon-orb {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: orbFloat 8s ease-in-out infinite;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.icon-orb.orb-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-orb.orb-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.icon-orb.orb-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.icon-orb.orb-4 {
    top: 40%;
    right: 5%;
    animation-delay: 6s;
}

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 25px;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Enhanced Animations */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Button Styles */
.btn-warning {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Pulse Button Animation */
.pulse-button {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(204, 153, 51, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(204, 153, 51, 0.6);
    }
}

/* Responsive Design untuk Index Hero */
@media (max-width: 1200px) {
    .hero-section-about .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section-about .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-section-about .hero-description {
        font-size: 1.1rem;
    }
    
    .floating-stats .floating-card {
        transform: scale(0.8);
    }
    
    .floating-stats .card-1 {
        right: 2%;
    }
    
    .floating-stats .card-2 {
        left: 1%;
    }
    
    .floating-stats .card-3 {
        left: 5%;
    }
    
    .icon-orb {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section-about .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-section-about .hero-description {
        font-size: 1rem;
    }
    
    .floating-stats,
    .service-icon-animation {
        display: none;
    }
    
    .hero-cta {
        padding: 1.5rem !important;
    }
    
    .cta-domain {
        font-size: 1.25rem;
    }
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), var(--support-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.services-section .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid var(--light-gray);
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 2rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.75rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.service-description {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-price h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
}

.service-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.9rem;
}

/* ===== PORTFOLIO CARDS ===== */
.portfolio-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 77, 54, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 0.5rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.portfolio-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray);
}

.portfolio-meta span {
    display: flex;
    align-items: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-section .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.date-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--support-color);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .services-section .col-lg-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 992px) {
    .services-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .cta-section .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .service-card,
    .portfolio-card,
    .blog-card {
        margin-bottom: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.bg-light {
    background-color: var(--light) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-success {
    color: var(--primary-color) !important;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.rounded-3 {
    border-radius: 1rem !important;
}


/* Improved Hero Section Styles */
.hero-section-about {
    background: linear-gradient(135deg, #084D36 0%, #063a28 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    z-index: 1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-particle.particle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particle.particle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.hero-particle.particle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-particle.particle-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #CC9933 0%, transparent 70%);
    opacity: 0.1;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-glow.glow-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.hero-glow.glow-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

/* Floating Stats */
.floating-stats {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-card {
    animation: float 4s ease-in-out infinite;
    pointer-events: auto;
}

.stat-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.stat-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.stat-3 {
    top: 10%;
    left: 15%;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

/* Backdrop blur utility */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .stat-card {
        transform: scale(0.8);
    }
    
    .stat-1 {
        top: 10%;
        right: 5%;
    }
    
    .stat-2 {
        bottom: 20%;
        left: 2%;
    }
    
    .stat-3 {
        top: 5%;
        left: 10%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-stats {
        display: none;
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 4;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-card.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 10%;
    left: 15%;
    animation-delay: 1.5s;
}

.floating-card i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Portfolio Visual */
.portfolio-visual {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    height: 200px;
}

.project-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /*position: relative;*/
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 5s ease-in-out infinite;
}

.project-card.showcase-1 {
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.project-card.showcase-2 {
    animation-delay: 1s;
    transform: rotate(2deg);
}

.project-card.showcase-3 {
    animation-delay: 2s;
    transform: rotate(-3deg);
}

.browser-window {
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.browser-header {
    background: #f1f3f4;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 0.25rem;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-content {
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

/* Services Visual */
.services-visual {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    height: 150px;
}

.service-icon-animation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.icon-orb {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.icon-orb.orb-1 { animation-delay: 0s; }
.icon-orb.orb-2 { animation-delay: 1s; }
.icon-orb.orb-3 { animation-delay: 2s; }
.icon-orb.orb-4 { animation-delay: 3s; }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-about {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-main-image {
        width: 300px;
        height: 350px;
    }
    
    .image-glow {
        width: 320px;
        height: 370px;
    }
    
    .floating-card {
        transform: scale(0.8);
    }
    
    .floating-card.card-1 {
        right: 5%;
    }
    
    .floating-card.card-3 {
        left: 5%;
    }
    
    .project-showcase {
        gap: 1rem;
    }
    
    .browser-window {
        width: 150px;
        height: 90px;
    }
    
    .icon-orb {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .service-icon-animation {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section-about {
        padding: 80px 0 40px;
    }
    
    .hero-main-image {
        width: 250px;
        height: 300px;
    }
    
    .floating-card {
        display: none; /* Sembunyikan di mobile sangat kecil */
    }
    
    .project-showcase {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-icon-animation {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
/* Vision Mission Section */
.vision-card, .mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.mission-list {
    margin-top: 1.5rem;
}

.mission-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(8, 77, 54, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    background: rgba(8, 77, 54, 0.1);
    transform: translateX(5px);
}

.mission-item i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

.mission-item span {
    font-weight: 500;
    color: var(--dark);
}

/* Values Section */
.value-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.value-icon.passion {
    background: linear-gradient(135deg, #e91e63, #f44336);
}

.value-icon.integrity {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
}

.value-icon.innovation {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.value-description {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray);
    line-height: 1.6;
}

/* Achievement Section */
.achievement-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.achievement-label {
    color: var(--gray);
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-about {
        padding: 100px 0 60px;
    }
    
    .vision-card, .mission-card {
        padding: 2rem;
    }
    
    .value-card, .achievement-card {
        margin-bottom: 2rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .cta-section .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Service Action */
.service-action {
    margin-top: auto;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table .table th {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
    text-align: center;
    font-weight: 600;
    padding: 1rem;
}

.comparison-table .table td {
    text-align: center;
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--light-gray);
}

.comparison-table .table tbody tr:hover {
    background-color: rgba(8, 77, 54, 0.05);
}

.comparison-table .table .fas.fa-check {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.comparison-table .table .fas.fa-times {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Process Section */
.process-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.process-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.process-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.accordion-button {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px !important;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(8, 77, 54, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--light);
    border: 1px solid var(--light-gray);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Features */
.service-features {
    margin: 1.5rem 0;
    text-align: left;
}

.feature-item {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Responsive Design for Services Page */
@media (max-width: 1200px) {
    .services-section .col-xl-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .services-section .col-xl-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .process-card {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .cta-section .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .comparison-table {
        padding: 1rem;
    }
    
    .comparison-table .table th,
    .comparison-table .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .process-card {
        padding: 1.5rem 1rem;
    }
    
    .comparison-table {
        padding: 0.5rem;
    }
    
    .comparison-table .table th,
    .comparison-table .table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* Animation for process cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card {
    animation: fadeInUp 0.6s ease-out;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }


/* Portfolio Filter */
.filter-buttons .btn-filter {
    margin: 0 5px 10px;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    transition: all 0.3s ease;
}

.filter-buttons .btn-filter.active,
.filter-buttons .btn-filter:hover {
    background: #084D36;
    color: white;
    border-color: #084D36;
}

/* Portfolio Grid */
.portfolio-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.portfolio-item.hidden {
    display: none;
}

/* Portfolio Cards */
.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 77, 54, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions .btn {
    margin: 0 5px;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    display: inline-block;
    background: #f8f9fa;
    color: #084D36;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.portfolio-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.portfolio-description {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #a0aec0;
}

.portfolio-meta span {
    display: flex;
    align-items: center;
}

/* Empty State */
.portfolio-empty {
    padding: 4rem 0;
}

.empty-state i {
    margin-bottom: 1rem;
}

/* Stats Section */
.stat-card {
    padding: 2rem 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: #084D36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #084D36;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #718096;
    font-weight: 500;
}

/* WhatsApp Float Animation */
.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Portfolio Filter Animation */
.portfolio-item {
    transition: all 0.3s ease-in-out;
}

.portfolio-item.hidden {
    display: none !important;
}

/* Loading Animation */
body:not(.loaded) .portfolio-item {
    opacity: 0;
    transform: translateY(20px);
}

/* Smooth transitions for portfolio grid */
.portfolio-grid {
    transition: all 0.3s ease;
}

/* Back to top button styles */
.back-to-top {
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Counter animation */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Portfolio card hover enhancements */
.portfolio-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Filter button active states */
.btn-filter.active {
    position: relative;
}

.btn-filter.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #084D36;
    border-radius: 2px;
}

/* Empty state animation */
.empty-state {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stat card animations */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Process card animations */
.process-card {
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card:hover .process-icon {
    background: #CC9933 !important;
    transform: scale(1.1);
}

.process-icon {
    transition: all 0.3s ease;
}

/* ===== HERO STRUCTURE FIXES ===== */
.hero-section-about {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section-about .container {
    position: relative;
    z-index: 10;
}

.hero-section-about .row {
    position: relative;
    z-index: 15;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-visual {
    position: relative;
    z-index: 15;
}

/* Floating elements positioning */
.floating-card {
    position: absolute;
    z-index: 25;
}

/* Visual containers */
.services-visual,
.portfolio-visual {
    position: relative;
    z-index: 5;
    height: 150px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .hero-section-about {
        text-align: center;
    }
    
    .hero-buttons .btn {
        margin: 5px 0;
        display: block;
        width: 100%;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-visual,
    .portfolio-visual {
        height: 100px;
    }
    
    .icon-orb,
    .project-card {
        transform: scale(0.8);
    }
}

/* Ensure content is above background */
.min-vh-70 {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Fix z-index layering */
.hero-particle,
.hero-glow {
    z-index: 2;
}

.hero-content * {
    position: relative;
    z-index: 30;
}

/* ===== FIXED HERO IMAGE POSITIONING ===== */
.hero-visual {
    position: relative;
    z-index: 15;
}

.floating-image-container {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.hero-main-image {
    position: relative;
    z-index: 5;
}

/* Fix floating stats positioning */
.floating-stats {
    pointer-events: none;
}

.stat-card {
    pointer-events: auto;
    z-index: 20;
    animation: float 4s ease-in-out infinite;
}

/* Remove problematic overlay */
.position-absolute.top-50.start-50.translate-middle {
    display: none;
}

/* Improved button styles to match index.php */
.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 153, 51, 0.3);
}

/* Ensure proper z-index layering */
.hero-section-about .container {
    position: relative;
    z-index: 100;
}

.hero-background {
    z-index: 1;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .floating-stats {
        display: none;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* ===== IMPROVED SERVICES HERO SECTION ===== */
.hero-section-services {
    /*background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);*/
    background: linear-gradient(135deg, #084D36 0%, #063a28 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Improved Hero Content */
.hero-section-services .hero-content {
    position: relative;
    z-index: 20;
}

.hero-section-services .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-section-services .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Improved Button Styles */
.hero-section-services .btn-warning {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 153, 51, 0.3);
}

.hero-section-services .btn-warning:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 153, 51, 0.4);
}

.hero-section-services .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-section-services .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Services Visual Improvements */
.services-visual {
    margin-top: 3rem;
}

.service-icon-animation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.icon-orb {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.icon-orb:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: var(--white);
}

.icon-orb.orb-1 { animation-delay: 0s; }
.icon-orb.orb-2 { animation-delay: 1s; }
.icon-orb.orb-3 { animation-delay: 2s; }
.icon-orb.orb-4 { animation-delay: 3s; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    z-index: 20;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    margin: 0 auto 10px;
    animation: scrollLine 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-services {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-section-services .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section-services .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .service-icon-animation {
        gap: 1.5rem;
    }
    
    .icon-orb {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section-services .hero-title {
        font-size: 2rem;
    }
    
    .hero-section-services .hero-description {
        font-size: 1rem;
    }
    
    .service-icon-animation {
        gap: 1rem;
    }
    
    .icon-orb {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ===== BLOG SECTION STYLES ===== */
.blog-section {
    background: var(--white);
}

.blog-filter .btn-filter {
    margin: 0 5px 10px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--dark);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.blog-filter .btn-filter.active,
.blog-filter .btn-filter:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 15px rgba(204, 153, 51, 0.3);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.date-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    background: var(--support-color);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta i {
    font-size: 0.8rem;
}

/* Blog Empty State */
.blog-empty {
    padding: 4rem 0;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.newsletter-section .section-title,
.newsletter-section .section-description {
    color: var(--white);
}

.newsletter-section .section-subtitle {
    background: linear-gradient(45deg, var(--accent-color), var(--support-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Load More Button */
#loadMoreArticles {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
}

#loadMoreArticles:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Blog Item Animations */
.blog-item {
    transition: all 0.3s ease-in-out;
}

.blog-item.hidden {
    display: none !important;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-filter .btn-filter {
        margin: 0 3px 8px;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .blog-date {
        padding: 0.5rem;
        min-width: 50px;
    }
    
    .date-day {
        font-size: 1.25rem;
    }
    
    .date-month {
        font-size: 0.7rem;
    }
}

/* ===== BLOG DETAIL STYLES ===== */
.article-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.03"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.article-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.article-header .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.article-header .breadcrumb-item a:hover {
    opacity: 1;
}

.article-header .breadcrumb-item.active {
    color: var(--accent-color);
    opacity: 1;
}

.article-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.blog-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(204, 153, 51, 0.3);
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.article-meta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-meta .author,
.article-meta .date,
.article-meta .views {
    color: var(--white);
    font-weight: 500;
}

.article-meta i {
    font-size: 1rem;
}

.article-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.article-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(8, 77, 54, 0.1), rgba(204, 153, 51, 0.1));
    z-index: 1;
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

/* Article Content */
.article-content {
    background: var(--white);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    font-family: var(--font-heading);
}

.article-body h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.article-body h3 {
    font-size: 1.5rem;
}

.article-body h4 {
    font-size: 1.25rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-body em {
    color: var(--accent-color);
    font-style: italic;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    position: relative;
}

.article-body ul li::before {
    content: '▸';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.article-body blockquote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    border-left: 5px solid var(--accent-color);
}

.article-body blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
    font-family: serif;
}

.article-body blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.article-body code {
    background: var(--light);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.article-body pre {
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Share Buttons */
.article-share {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
}

.article-share h6 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.share-buttons .btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-width: 2px;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Articles */
.related-articles .blog-card {
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.related-articles .blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.related-articles .blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles .blog-title a:hover {
    color: var(--accent-color);
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .article-featured-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-header .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .article-body {
        font-size: 0.95rem;
    }
    
    .article-body blockquote {
        padding: 1.5rem;
    }
    
    .article-body blockquote p {
        font-size: 1rem;
    }
}

/* Animation for article content */
.article-body > * {
    animation: fadeInUp 0.6s ease-out;
}

.article-body h2 {
    animation-delay: 0.1s;
}

.article-body h3 {
    animation-delay: 0.2s;
}

.article-body p {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO SECTION FIXES ===== */
.hero-section-about {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-visual {
    position: relative;
    z-index: 15;
}

/* Fix floating cards positioning */
.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 25;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 26;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 160px;
}

/* Reposition floating cards */
.floating-card.card-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: 3%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

/* Fix service icons positioning */
.service-icon-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.icon-orb {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: orbFloat 8s ease-in-out infinite;
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Reposition icon orbs */
.icon-orb.orb-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-orb.orb-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.icon-orb.orb-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.icon-orb.orb-4 {
    top: 40%;
    right: 5%;
    animation-delay: 6s;
}

/* Fix main image container */
.floating-image-container {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.hero-main-image {
    position: relative;
    z-index: 5;
    max-height: 500px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 25px;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Improved button alignment */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    text-align: center;
}

/* CTA box improvements */
.hero-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Scroll indicator positioning */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
}

/* Enhanced animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive fixes */
@media (max-width: 1200px) {
    .hero-section-about .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section-about {
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-section-about .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-section-about .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .floating-card {
        transform: scale(0.8);
    }
    
    .floating-card.card-1 {
        right: 2%;
    }
    
    .floating-card.card-2 {
        left: 1%;
    }
    
    .floating-card.card-3 {
        left: 5%;
    }
    
    .icon-orb {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-main-image {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-section-about .hero-title {
        font-size: 2rem !important;
    }
    
    .floating-stats,
    .service-icon-animation {
        display: none;
    }
    
    .hero-cta {
        padding: 1rem !important;
    }
}

/* Portfolio Visual Positioning Fix */
.portfolio-visual {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    height: 200px;
}

.project-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    /*display: flex;*/
    /*justify-content: space-between; */
    /*align-items: flex-end;*/
    position: relative;
    height: 100%;
    padding: 0 5%;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 5s ease-in-out infinite;
    position: relative;
}

/* Posisikan masing-masing card */
.project-card.showcase-1 {
    animation-delay: 0s;
    transform: rotate(-5deg);
    align-self: flex-start; /* Posisi atas */
    margin-top: 20px;
}

.project-card.showcase-2 {
    animation-delay: 1s;
    transform: rotate(2deg);
    align-self: center; /* Posisi tengah */
}

.project-card.showcase-3 {
    animation-delay: 2s;
    transform: rotate(-3deg);
    align-self: flex-end; /* Posisi bawah */
    margin-bottom: 20px;
}

/* Browser window styling */
.browser-window {
    width: 180px;
    height: 110px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.browser-header {
    background: #f1f3f4;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 0.25rem;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-content {
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.4;
    position: relative;
}

/* Tambahkan pattern subtle pada browser content */
.browser-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 20px 20px;
}


/* ===== CONTACT PAGE STYLES ===== */

/* Contact Cards */
.contact-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--light-gray);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(8, 77, 54, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Features */
.contact-features {
    margin-top: 2rem;
}

.contact-features .feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--dark);
}

.contact-features .feature-item i {
    font-size: 1.1rem;
}

/* FAQ Accordion */
.accordion-item {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
    font-size: 1.1rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(8, 77, 54, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--light);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .cta-section .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animation for contact cards */
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== TERMS & PRIVACY PAGE STYLES ===== */

/* Page Hero Section */
.page-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
}

.min-vh-50 {
    min-height: 50vh !important;
    display: flex;
    align-items: center;
}

/* Content Card */
.content-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--box-shadow-hover);
}

.content-card h2,
.content-card h3,
.content-card h4,
.content-card h5,
.content-card h6 {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.content-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.content-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.content-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.content-card ul,
.content-card ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-card li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--dark);
}

.content-card ul li::before {
    content: '▸';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.content-card ol {
    counter-reset: item;
}

.content-card ol li {
    counter-increment: item;
}

.content-card ol li::before {
    content: counter(item) ".";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Alert Styling */
.alert-light {
    background-color: var(--light);
    border-color: var(--accent-color);
    color: var(--dark);
}

.alert-light i {
    color: var(--accent-color);
}

/* Contact Section in Terms/Privacy */
.contact-section-terms {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-section-terms h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-section-terms .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-section-terms .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
}

.contact-section-terms .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
}

.contact-section-terms .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.contact-section-terms .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Links in content */
.content-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Strong and emphasis text */
.content-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

.content-card em {
    color: var(--accent-color);
    font-style: italic;
}

/* Blockquotes */
.content-card blockquote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    border-left: 5px solid var(--accent-color);
}

.content-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
    font-family: serif;
}

.content-card blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem !important;
        margin: 1rem 0;
    }
    
    .page-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .content-card h3 {
        font-size: 1.25rem;
    }
    
    .content-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-section-terms {
        padding: 1.5rem;
    }
    
    .contact-section-terms .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem !important;
    }
    
    .content-card h2 {
        font-size: 1.25rem;
    }
    
    .content-card blockquote {
        padding: 1.5rem;
    }
    
    .content-card blockquote p {
        font-size: 1rem;
    }
}

/* Animation for content */
.content-card > * {
    animation: fadeInUp 0.6s ease-out;
}

.content-card h2 {
    animation-delay: 0.1s;
}

.content-card h3 {
    animation-delay: 0.2s;
}

.content-card p {
    animation-delay: 0.3s;
}

.content-card ul, 
.content-card ol {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}