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

/* Button responsive padding for small devices */
@media (max-width: 576px) {
    .btn {
        padding: 8px 12px !important;
        font-size: 14px !important;
        min-height: 44px; /* Touch-friendly minimum height */
    }
    
    .btn-sm {
        padding: 6px 10px !important;
        font-size: 12px !important;
        min-height: 36px;
    }
    
    .btn-lg {
        padding: 12px 20px !important;
        font-size: 16px !important;
        min-height: 48px;
    }
    
    /* Make form controls touch-friendly */
    .form-control {
        min-height: 44px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .form-select {
        min-height: 44px !important;
        font-size: 16px !important;
    }
    
    /* Improve table responsiveness */
    .table-responsive {
        font-size: 14px;
    }
    
    .table th,
    .table td {
        padding: 8px 4px;
        font-size: 13px;
    }
    
    /* Dashboard specific mobile improvements */
    .container, .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Card improvements for small screens */
    .card {
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .card-header {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    /* Text improvements */
    h1 { font-size: 22px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 18px !important; }
    h4 { font-size: 16px !important; }
    h5 { font-size: 14px !important; }
    
    /* Alert improvements */
    .alert {
        padding: 10px 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* Badge improvements */
    .badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Modal improvements */
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-footer {
        padding: 10px 15px;
    }
}

/* Specific fixes for very small screens (iPhone SE and similar) */
@media (max-width: 375px) {
    .btn {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }
    
    .container, .container-fluid {
        padding-left: 8px !important;  
        padding-right: 8px !important;
    }
    
    .card {
        margin-bottom: 12px;
    }
    
    .card-header {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .card-body {
        padding: 12px;
    }
    
    /* Further reduce text sizes */
    h1 { font-size: 20px !important; }
    h2 { font-size: 18px !important; }
    h3 { font-size: 16px !important; }
    h4 { font-size: 14px !important; }
    
    /* Compact stats display */
    .stats-grid {
        gap: 8px !important;
    }
    
    .stat-card {
        padding: 10px !important;
    }
    
    .stat-number {
        font-size: 18px !important;
    }
    
    .stat-label {
        font-size: 11px !important;
    }
    
    .chart-container {
        height: 200px !important;
        padding: 8px !important;
    }
    
    /* Force better spacing on mobile */
    .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Ensure content doesn't get too cramped */
    .main-content {
        min-width: 320px !important; /* Minimum supported width */
    }
}

/* Global mobile-first improvements */
@media screen and (max-width: 480px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* Better touch targets */
    a, button, .btn, .clickable {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    /* Improve readability */
    body {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Better form spacing */
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-control {
        padding: 12px !important;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #FEFAE0 0%, #F4F3F0 50%, #E8F5E8 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 50%;
    opacity: 0.1;
    animation: gentleFloat 8s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #606C38, #283618);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: gentleFloat 10s ease-in-out infinite reverse;
}

.shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #283618, #606C38);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.05;
    animation: gentleFloat 6s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(96, 108, 56, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(96, 108, 56, 0.2);
}

.hero-badge span {
    color: #606C38;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #283618;
    line-height: 1.1;
}

.title-highlight {
    color: #BC6C25;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #FFB703, #BC6C25);
    opacity: 0.3;
    border-radius: 5px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #283618;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #BC6C25;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #606C38;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(40, 54, 24, 0.1);
    border: 1px solid rgba(96, 108, 56, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.floating {
    animation: gentleFloat 4s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.user-avatar::before {
    content: '👩‍⚕️';
    font-size: 1.5rem;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #283618;
}

.status {
    font-size: 0.9rem;
    color: #606C38;
}

.status.online {
    color: #28a745;
}

.message-bubble {
    background: #F8F9FA;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid #FFB703;
}

.message-bubble p {
    margin: 0;
    color: #283618;
    font-style: italic;
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    opacity: 0.6;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #606C38;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-features {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature-item {
    padding: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: #283618;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #606C38;
    z-index: 2;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }

    .stat-item {
        display: none;
    }
}



.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #606C38;
    border-bottom: 2px solid #606C38;
    transform: rotate(45deg);
    margin: 0 auto 0.5rem;
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(254, 250, 224, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(96, 108, 56, 0.1);
}

/* Scrolled state - transparent with blur */
nav.scrolled {
    background: rgba(254, 250, 224, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(96, 108, 56, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced blur for better readability on scroll */
nav.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
}

nav.scrolled .logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

nav.scrolled .nav-menu a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

nav.scrolled .nav-menu a:hover {
    background: rgba(96, 108, 56, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #283618;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #283618;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover {
    background: #606C38;
    color: #FEFAE0;
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: #606C38;
    color: #FEFAE0;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(188, 108, 37, 0.15);
}

.crisis-button {
    background: #BC6C25 !important;
    color: #FEFAE0 !important;
    font-weight: 600;
    animation: gentlePulse 2s infinite;
}

.crisis-button:hover {
    background: #FFB703 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #283618;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: #FEFAE0;
    color: #283618;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #606C38;
    font-weight: 300;
}

.services .subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #283618;
    opacity: 0.8;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(188, 108, 37, 0.1);
    border-color: rgba(188, 108, 37, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 150px;
    height: 150px;
    background: #FFB703;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #283618;
    margin: auto;
    margin-bottom:20px;
}

/* Ensure service icons (images) are centered and scaled inside the circle */
.service-icon img,
.service-icon .service-icon-img {
    display: block;
    width: auto;
    max-height: 150px;
    /* object-fit: fill; */
    border-radius: 50%;
}

.service-card h3 {
    color: #283618;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    color: #FEFAE0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about .container {
    max-width: 1200px;
}

.about-image-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.about-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-illustration:hover {
    transform: scale(1.05);
}

.about-content {
    padding-left: 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FEFAE0;
    line-height: 1.2;
}

.text-accent {
    color: #FFB703;
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #FFB703, #BC6C25);
    opacity: 0.4;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(254, 250, 224, 0.8);
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 183, 3, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB703, transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 183, 3, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #283618;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFB703;
    margin: 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(254, 250, 224, 0.9);
    margin: 0;
    padding-left: 5px;
    padding-top: 10px;
}

/* Responsive Design for About Section */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-description {
        padding-left: 0;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

/* Resources Section */
.resources {
    padding: 8rem 2rem;
    background: #FFB703;
    color: #283618;
}

.resources h2 {
    font-size: 3rem;
    text-align: center;
    color: #283618;
    font-weight: 300;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: rgba(254, 250, 224, 0.9);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    background: #FEFAE0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
    color: #606C38;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: #BC6C25;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #283618;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: #283618;
    color: #FEFAE0;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #FFB703;
    font-weight: 300;
}

.contact p {
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    text-align: left;
    padding: 2rem;
    background: rgba(96, 108, 56, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 183, 3, 0.2);
    transform: translateY(-5px);
}

.contact-item h3 {
    color: #FFB703;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.emergency-notice {
    background: rgba(188, 108, 37, 0.2);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #BC6C25;
}

.emergency-notice h3 {
    color: #FFB703;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    background: #606C38;
    color: #FEFAE0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes gentlePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Testimonial Carousel Styles */
.testimonial-card-carousel {
    background: rgba(254, 250, 224, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(96, 108, 56, 0.1);
}

.testimonial-avatar {
    margin-bottom: 2rem;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #FFB703;
    object-fit: cover;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #FFB703;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #283618;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #BC6C25;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: #BC6C25;
    position: absolute;
    bottom: -40px;
    right: -20px;
    opacity: 0.3;
}

.testimonial-author strong {
    display: block;
    color: #283618;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #606C38;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: #BC6C25;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #FFB703;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(188, 108, 37, 0.4);
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: #BC6C25;
    transform: scale(1.3);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .testimonial-card-carousel {
        padding: 2rem;
        margin: 1rem 0;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-control-prev {
        left: -30px;
    }

    .carousel-control-next {
        right: -30px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .avatar-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 1rem auto;
    }

    .carousel-control-prev {
        margin-bottom: 0.5rem;
    }
}

/* Motivational Quotes (match site card styling) */
.motivational-quotes .quote-card {
    background: rgba(254, 250, 224, 0.95);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(96,108,56,0.08);
    overflow: hidden;
    margin: 2rem 0;
}

.motivational-quotes .quote-card.empty-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: none;
    border: none;
}

/* Owl-carousel layout for quotes */
#quotesCarousel.owl-carousel {
    padding: 1rem 0;
}
#quotesCarousel.owl-carousel .quote-item {
    display: block;
    box-sizing: border-box;
}
#quotesCarousel.owl-carousel .owl-nav .owl-prev,
#quotesCarousel.owl-carousel .owl-nav .owl-next {
    background: #BC6C25;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#quotesCarousel.owl-carousel .owl-nav { display: none !important; }
#quotesCarousel.owl-carousel .owl-nav .owl-prev { position: absolute; left: -64px; top: 50%; transform: translateY(-50%); }
#quotesCarousel.owl-carousel .owl-nav .owl-next { position: absolute; right: -64px; top: 50%; transform: translateY(-50%); }
#quotesCarousel.owl-carousel .owl-dots { text-align: center; margin-top: 1rem; }

#quotesCarousel .carousel-item {
    display: block; /* override bootstrap */
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    box-sizing: border-box;
    padding: 0;
}

@media (max-width: 992px) {
    #quotesCarousel .carousel-item {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }
}

@media (max-width: 575px) {
    #quotesCarousel .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* smaller visuals */
.motivational-quotes .quote-card {
    padding: 0.5rem;
    border-radius: 12px;
}

.motivational-quotes .quote-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    max-height: 260px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .motivational-quotes .quote-img { max-height: 200px; }
}
@media (max-width: 575px) {
    .motivational-quotes .quote-img { max-height: 160px; }
}


/* Make section heading/descriptions visible on light backgrounds */
.motivational-quotes {
    padding: 6rem 2rem;
    background: transparent; /* keep page background */
}

.motivational-quotes .section-title {
    color: #606C38; /* match other light-section headings */
}

.motivational-quotes p {
    color: #283618;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 786px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 60px;
    }

    .hero-text {
        /* width: 100vw; */
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
    }

    .hero-visual {
        padding: 0px 20px;
    }

    .hero-actions {
        justify-content: center;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(254, 250, 224, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(96, 108, 56, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        margin: 0 1rem;
        display: block;
        font-size: 1.1rem;
    }

    .crisis-button {
        margin-top: 1rem;
        padding: 1rem 2rem !important;
    }

    /* Mobile dropdown styling to match menu items */
    .nav-menu .dropdown {
        width: 100%;
        margin: 0.5rem 0;
    }

    .nav-menu .dropdown .btn,
    .nav-menu .dropdown .btn-sm,
    .nav-menu .dropdown .dropdown-toggle {
        width: calc(100% - 2rem) !important;
        padding: 1rem 2rem !important;
        margin: 0 1rem !important;
        font-size: 1.1rem !important;
        border: none !important;
        background: transparent !important;
        color: #283618 !important;
        border-radius: 25px !important;
        text-align: center;
        display: block;
        min-height: auto !important;
        font-weight: 400 !important;
        line-height: 1.5 !important;
    }

    .nav-menu .dropdown .btn:hover,
    .nav-menu .dropdown .btn-sm:hover,
    .nav-menu .dropdown .dropdown-toggle:hover {
        background: #606C38 !important;
        color: #FEFAE0 !important;
        transform: translateY(-2px);
    }

    .nav-menu .dropdown-menu {
        width: 100%;
        margin: 0 1rem;
        background: rgba(254, 250, 224, 0.95) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(96, 108, 56, 0.1) !important;
    }

    .nav-menu .dropdown-menu a {
        background: rgba(220, 53, 69, 0.1) !important;
        color: #dc3545 !important;
        font-weight: 600 !important;
    }

    .nav-menu .dropdown-menu a:hover {
        background: #dc3545 !important;
        color: #FEFAE0 !important;
    }
}

/* Services Page Styles */
.layanan-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    color: #FEFAE0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.layanan-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 100 100"><defs><pattern id="servicesgrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FEFAE0" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23servicesgrain)"/></svg>');
    pointer-events: none;
}

.header-services-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 183, 3, 0.2);
    position: relative;
    overflow: hidden;
}

.header-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB703, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.services-highlight {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 183, 3, 0.3);
}

.services-highlight h3 {
    color: #FFB703;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.services-highlight p {
    color: rgba(254, 250, 224, 0.9);
    margin: 0;
}

.service-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.preview-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 183, 3, 0.3);
}

.preview-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #283618;
    flex-shrink: 0;
}

.preview-info h4 {
    color: #FFB703;
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.preview-info p {
    color: rgba(254, 250, 224, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Services Main Section */
.layanan-main {
    padding: 6rem 2rem;
    background: #FEFAE0;
}

/* Accordion Styles */
.services-accordion {
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 183, 3, 0.3);
}

.accordion-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.accordion-header:hover {
    background: rgba(96, 108, 56, 0.02);
}

.accordion-header.active {
    background: rgba(96, 108, 56, 0.05);
    border-bottom: 1px solid rgba(96, 108, 56, 0.1);
}

.service-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-header .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #606C38, #283618);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FEFAE0;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(96, 108, 56, 0.3);
}

.service-info h3 {
    color: #283618;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.service-brief {
    color: rgba(40, 54, 24, 0.7);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    background: rgba(96, 108, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-toggle i {
    color: #606C38;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
    background: #606C38;
}

.accordion-header.active .accordion-toggle i {
    color: #FEFAE0;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #FEFAE0;
}

.accordion-content.active {
    max-height: 1000px;
}

.content-inner {
    padding: 2.5rem;
}

.content-inner h4 {
    color: #283618;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content-inner h5 {
    color: #606C38;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.content-inner p {
    color: rgba(40, 54, 24, 0.8);
    margin: 0;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: rgba(40, 54, 24, 0.8);
    line-height: 1.6;
}

.feature-list i {
    color: #606C38;
    font-size: 0.9rem;
    width: 16px;
}

.suitable-for {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(96, 108, 56, 0.1);
    color: #606C38;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(96, 108, 56, 0.2);
}

.service-details-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    height: fit-content;
}

.service-details-card h5 {
    color: #283618;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(96, 108, 56, 0.1);
}

.detail-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(96, 108, 56, 0.05);
    color: rgba(40, 54, 24, 0.8);
    line-height: 1.5;
}

.detail-item:last-of-type {
    border-bottom: none;
}

.detail-item strong {
    color: #606C38;
    font-weight: 600;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FFB703;
}

.tech-item i {
    color: #606C38;
    font-size: 1.2rem;
    width: 20px;
}

.tech-item span {
    color: rgba(40, 54, 24, 0.8);
    font-weight: 500;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.ai-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(96, 108, 56, 0.1);
}

.ai-features .feature-item i {
    color: #FFB703;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 24px;
}

.ai-features .feature-item strong {
    color: #283618;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ai-features .feature-item p {
    color: rgba(40, 54, 24, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Additional Services */
.additional-services {
    border-top: 2px solid rgba(96, 108, 56, 0.1);
    padding-top: 3rem;
}

.support-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 183, 3, 0.3);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #283618;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.3);
}

.support-card h4 {
    color: #283618;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-card p {
    color: rgba(40, 54, 24, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-link {
    color: #BC6C25;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #606C38;
}

/* Responsive Design for Services Page */
@media (max-width: 991px) {
    .layanan-header {
        text-align: center;
        padding: 6rem 2rem 4rem;
    }

    .header-content {
        margin-bottom: 3rem;
    }

    .header-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .layanan-header {
        padding: 4rem 1rem 3rem;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-services-card {
        padding: 2rem;
    }

    .services-highlight {
        padding: 1.5rem;
    }

    .preview-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .accordion-header {
        padding: 1.5rem;
    }

    .service-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .content-inner {
        padding: 2rem;
    }

    .service-details-card {
        margin-top: 2rem;
    }

    .tech-stack,
    .ai-features {
        flex-direction: column;
    }

    .support-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Artikel Page Styles */
.artikel-header {
    background: linear-gradient(135deg, #606C38 0%, #283618 50%, #1A1F0F 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.artikel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 183, 3, 0.1) 0%, rgba(188, 108, 37, 0.2) 100%);
    z-index: 1;
}

.artikel-header .container {
    position: relative;
    z-index: 2;
}

.header-artikel-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-highlight {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(96, 108, 56, 0.1);
}

.featured-highlight h3 {
    color: #283618;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-highlight p {
    color: #606C38;
    font-size: 16px;
    margin: 0;
}

.artikel-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 12px;
    border-left: 4px solid #606C38;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 108, 56, 0.2);
    background: rgba(96, 108, 56, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #606C38, #283618);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.category-icon i {
    color: white;
    font-size: 20px;
}

.category-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #283618;
}

.category-info span {
    font-size: 14px;
    color: #606C38;
}

.artikel-main {
    padding: 80px 0;
    background: #FEFAE0;
}

.search-filter-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.search-box {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #606C38;
    background: white;
    box-shadow: 0 0 0 3px rgba(96, 108, 56, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #606C38;
    font-size: 18px;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #606C38, #283618);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 2px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #283618, #1A1F0F);
    transform: translateX(-2px);
}

.filter-options {
    display: flex;
    justify-content: flex-end;
}

.filter-select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.filter-select:focus {
    border-color: #606C38;
    outline: none;
    box-shadow: 0 0 0 3px rgba(96, 108, 56, 0.1);
}

.featured-article-section .section-header {
    text-align: center;
}

.featured-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    overflow: hidden;
    /* height: 300px; */
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFB703, #FB8500);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tag.mental-health {
    background: rgba(96, 108, 56, 0.1);
    color: #606C38;
}

.category-tag.academic {
    background: rgba(255, 183, 3, 0.1);
    color: #BC6C25;
}

.category-tag.self-care {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
}

.category-tag.social {
    background: rgba(30, 144, 255, 0.1);
    color: #1E90FF;
}

.category-tag.motivation {
    background: rgba(255, 20, 147, 0.1);
    color: #FF1493;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #283618;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #606C38, #283618);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #283618;
    font-size: 16px;
}

.publish-date {
    font-size: 14px;
    color: #666;
}

.read-more-btn {
    background: linear-gradient(135deg, #606C38, #283618);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #283618, #1A1F0F);
    transform: translateX(5px);
}

.articles-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-self: start;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 380px;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.article-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.academic {
    background: rgba(255, 183, 3, 0.9);
    color: white;
}

.category-badge.self-care {
    background: rgba(139, 69, 19, 0.9);
    color: white;
}

.category-badge.social {
    background: rgba(30, 144, 255, 0.9);
    color: white;
}

.category-badge.mental-health {
    background: rgba(96, 108, 56, 0.9);
    color: white;
}

.category-badge.motivation {
    background: rgba(255, 20, 147, 0.9);
    color: white;
}

.article-content {
    padding: 25px;
}

.article-card .article-meta {
    margin-bottom: 15px;
}

.views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.article-card .article-title {
    font-size: 18px;
    font-weight: 600;
    color: #283618;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card .article-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

.article-card .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-card .author-info {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.article-card .author-name {
    font-size: 14px;
    font-weight: 600;
}

.article-card .publish-date {
    font-size: 12px;
}

.read-link {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #606C38, #283618);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-link:hover {
    background: linear-gradient(135deg, #283618, #1A1F0F);
    transform: scale(1.1);
}

.load-more-section {
    margin-top: 50px;
}

.load-more-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #606C38;
    background: transparent;
    color: #606C38;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #606C38, #283618);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 108, 56, 0.3);
}

.load-more-info {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.newsletter-section {
    margin-top: 60px;
}

.newsletter-card {
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    border-radius: 20px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 183, 3, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #FFB703;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 12px 0 0 12px;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, #FFB703, #FB8500);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #FB8500, #BC6C25);
    transform: translateX(2px);
}

.newsletter-note {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #283618;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Responsive Design for Artikel Page */
@media (max-width: 768px) {
    .artikel-header {
        padding: 80px 0 60px;
    }

    .header-artikel-card {
        padding: 30px 20px;
    }

    .artikel-categories {
        grid-template-columns: 1fr;
    }

    .category-item {
        padding: 15px;
    }

    .search-filter-section {
        padding: 20px;
    }

    .filter-options {
        justify-content: stretch;
        margin-top: 15px;
    }

    .featured-content {
        padding: 25px;
    }

    .article-title {
        font-size: 24px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-card {
        padding: 30px 20px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        border-radius: 12px;
    }

    .newsletter-btn {
        border-radius: 12px;
        justify-content: center;
    }
}

/* Article Detail Styles */
.artikel-detail-container {
    padding-top: 2rem;
}

.artikel-detail-header {
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    color: #FEFAE0;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.artikel-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: rgba(255, 183, 3, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
}

.article-breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: rgba(254, 250, 224, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FFB703;
}

.breadcrumb-item.active {
    color: #FFB703;
}


.featured-badge {
    background: linear-gradient(45deg, #FFB703, #FB8500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-kesehatan-mental {
    background: rgba(96, 108, 56, 0.2);
    color: #FEFAE0;
    border: 1px solid rgba(96, 108, 56, 0.3);
}

.category-tips-akademik {
    background: rgba(255, 183, 3, 0.2);
    color: #FEFAE0;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.category-self-care {
    background: rgba(139, 69, 19, 0.2);
    color: #FEFAE0;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.category-motivasi {
    background: rgba(255, 20, 147, 0.2);
    color: #FEFAE0;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.category-sosial {
    background: rgba(30, 144, 255, 0.2);
    color: #FEFAE0;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.article-detail-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #FEFAE0;
}

.article-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(254, 250, 224, 0.8);
    font-size: 0.95rem;
}

.stat-item i {
    color: #FFB703;
    width: 16px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.share-label {
    font-weight: 600;
    color: #FFB703;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn.copy {
    background: rgba(255, 255, 255, 0.2);
    color: #FEFAE0;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.artikel-detail-content {
    padding: 4rem 0;
    background: #FEFAE0;
}

.article-content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(96, 108, 56, 0.1);
}

.article-cover-image {
    margin-bottom: 3rem;
    text-align: center;
}

.cover-img {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.image-caption {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

.article-body {
    margin-bottom: 3rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.article-tags {
    padding: 2rem 0;
    border-top: 2px solid rgba(96, 108, 56, 0.1);
    margin-bottom: 2rem;
}

.article-tags h4 {
    color: #283618;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(96, 108, 56, 0.1);
    color: #606C38;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(96, 108, 56, 0.2);
}

.featured-tag {
    background: rgba(255, 183, 3, 0.2);
    color: #BC6C25;
    border-color: rgba(255, 183, 3, 0.3);
}

.article-footer-actions {
    border-top: 2px solid rgba(96, 108, 56, 0.1);
    padding-top: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    background: rgba(96, 108, 56, 0.1);
    color: #606C38;
    border: 2px solid rgba(96, 108, 56, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}

.action-btn:hover {
    background: #606C38;
    color: #FEFAE0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 108, 56, 0.3);
}

.related-articles-section {
    padding: 4rem 0;
    background: white;
}

.related-article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .card-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: rgba(96, 108, 56, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #606C38;
    font-size: 3rem;
}

.card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(96, 108, 56, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

.card-title a {
    color: #283618;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: block;
}

.card-title a:hover {
    color: #606C38;
}

.card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.no-related-articles {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-related-articles i {
    font-size: 3rem;
    color: #606C38;
    margin-bottom: 1rem;
}

.article-navigation {
    background: rgba(96, 108, 56, 0.05);
    padding: 2rem 0;
}

.nav-buttons {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.nav-item.prev {
    justify-self: start;
}

.nav-item.center {
    justify-self: center;
}

.nav-item.next {
    justify-self: end;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #283618;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #606C38;
}

.nav-content {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.nav-title {
    font-weight: 600;
    line-height: 1.3;
}

.comments-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.comments-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comments-wrapper h3 {
    color: #283618;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-comments {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-comments i {
    font-size: 3rem;
    color: #606C38;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artikel-detail-title {
        font-size: 2rem;
    }

    .article-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-content-wrapper {
        padding: 2rem;
    }

    .nav-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-item.prev,
    .nav-item.next,
    .nav-item.center {
        justify-self: stretch;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.breadcrumb-wrapper {
    position: relative;
    top: 0;
    width: 100%;
    padding: 1rem 0rem;
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid rgba(96, 108, 56, 0.1);
}



@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav {
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }
}

/* Accessibility */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #FFB703;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #FEFAE0;
    }

    .service-card,
    .resource-card {
        border: 2px solid #283618;
    }
}


.subheader {
    background: linear-gradient(135deg, #7d8471 0%, #96a584 50%, #7d8471 100%);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.subheader::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #f39c12;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.subheader::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: #e67e22;
    transform: rotate(45deg);
    opacity: 0.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.subheader-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-content {
    flex: 1;
    color: white;
}

.subheader-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #f1c40f;
}

.subheader-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 500px;
}


.visual-elements {
    flex: 0 0 200px;
    height: 150px;
    position: relative;
}

.shape {
    position: absolute;
    transition: transform 0.6s ease;
}

.shape:hover {
    transform: scale(1.1) rotate(10deg);
}

.circle-large {
    width: 70px;
    height: 70px;
    background: #f39c12;
    border-radius: 50%;
    top: 10px;
    right: 0;
    opacity: 0.9;
}

.square {
    width: 50px;
    height: 50px;
    background: #2d4a2b;
    transform: rotate(45deg);
    top: 30px;
    left: 60px;
    border-radius: 4px;
}

.circle-medium {
    width: 55px;
    height: 55px;
    background: #d35400;
    border-radius: 50%;
    bottom: 20px;
    left: 10px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid #e67e22;
    bottom: 35px;
    right: 50px;
}

.rectangle {
    width: 60px;
    height: 35px;
    background: #f1c40f;
    top: 70px;
    left: 30px;
    border-radius: 4px;
}

.cta-buttons {
    display: none;
    /* Hidden untuk menghemat space */
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #f39c12;
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #7d8471;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subheader {
        padding: 30px 15px;
        height: 35vh;
        min-height: 280px;
        max-height: 350px;
    }

    .subheader-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .subheader-title {
        font-size: 1.5rem;
    }

    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }

    .visual-elements {
        flex: none;
        width: 100%;
        height: 100px;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.shape {
    animation: float 4s ease-in-out infinite;
}

.shape:nth-child(2) {
    animation-delay: -1s;
}

.shape:nth-child(3) {
    animation-delay: -2s;
}

.shape:nth-child(4) {
    animation-delay: -3s;
}

/* Profile Page Styles */
.profile-container {
    max-width: 100%;
    margin: 90px 0 0 0;
    padding: 2rem 4rem;
    background: rgba(255, 183, 3, 0.05);
    min-height: calc(100vh - 100px);
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    border-radius: 20px;
    color: #FEFAE0;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 50%;
    animation: gentleFloat 8s ease-in-out infinite;
}

.profile-header h1 {
    font-size: 2.5rem;
    color: #FFB703;
    margin-bottom: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.profile-header .welcome-text {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.profile-card {
    background: rgba(96, 108, 56, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(96, 108, 56, 0.1);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(188, 108, 37, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-card h2 {
    color: #283618;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid #FFB703;
}

.profile-info strong {
    color: #606C38;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-info span {
    color: #283618;
    font-size: 1.1rem;
}

.provider-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #BC6C25;
    color: #FEFAE0;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.profile-actions {
    text-align: center;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.profile-actions .cta-button {
    margin: 0 1rem;
    display: inline-block;
}

.logout-button {
    background: #BC6C25;
    color: #FEFAE0;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.logout-button:hover {
    background: #283618;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 54, 24, 0.3);
}

.profile-menu {
    background: rgba(255, 183, 3, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.profile-menu h3 {
    color: #283618;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.menu-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #283618;
    border: 2px solid transparent;
}

.menu-item:hover {
    border-color: #FFB703;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.menu-item span {
    font-weight: 500;
    color: #283618;
}

/* Responsive for profile */
@media (max-width: 768px) {
    .profile-container {
        margin-top: 100px;
        padding: 1rem 2rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-header h1 {
        font-size: 2rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }
}

.site-footer {
    background: #283618;
    color: #ccd5ae;
    padding: 40px 0 0 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    border-top: 1px solid #ccd5ae;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 24px 24px;
}

.footer-col {
    flex: 1 1 100px;
    margin: 16px 12px;
    min-width: 180px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #283618;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col ul {
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #606c38;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #bc6c25;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 12px 24px 12px;
    }

    .footer-col {
        margin: 12px 0;
        width: 100%;
    }
}

/* button class ut  */
/* Base Button Styles */
.btn-ut {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.btn-ut:focus {
    outline: 3px solid rgba(96, 108, 56, 0.3);
    outline-offset: 2px;
}

/* Primary Buttons */
.btn-ut-primary {
    background: #283618;
    color: #FEFAE0;
    box-shadow: 0 4px 12px rgba(40, 54, 24, 0.3);
}

.btn-ut-primary:hover {
    background: #606C38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 54, 24, 0.4);
}

.btn-ut-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(40, 54, 24, 0.3);
}

/* Secondary Buttons */
.btn-ut-secondary {
    background: #606C38;
    color: #FEFAE0;
    box-shadow: 0 4px 12px rgba(96, 108, 56, 0.3);
}

.btn-ut-secondary:hover {
    background: #283618;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 108, 56, 0.4);
}

/* Accent Buttons */
.btn-ut-accent {
    background: #FFB703;
    color: #283618;
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
}

.btn-ut-accent:hover {
    background: #BC6C25;
    color: #FEFAE0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

/* Warning Buttons */
.btn-ut-warning {
    background: #BC6C25;
    color: #FEFAE0;
    box-shadow: 0 4px 12px rgba(188, 108, 37, 0.3);
}

.btn-ut-warning:hover {
    background: #a55a20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 108, 37, 0.4);
}

/* Outline Buttons */
.btn-ut-outline-primary {
    background: transparent;
    color: #283618;
    border: 2px solid #283618;
}

.btn-ut-outline-primary:hover {
    background: #283618;
    color: #FEFAE0;
    transform: translateY(-2px);
}

.btn-ut-outline-secondary {
    background: transparent;
    color: #606C38;
    border: 2px solid #606C38;
}

.btn-ut-outline-secondary:hover {
    background: #606C38;
    color: #FEFAE0;
    transform: translateY(-2px);
}

.btn-ut-outline-accent {
    background: transparent;
    color: #BC6C25;
    border: 2px solid #BC6C25;
}

.btn-ut-outline-accent:hover {
    background: #BC6C25;
    color: #FEFAE0;
    transform: translateY(-2px);
}

/* Ghost Buttons */
.btn-ut-ghost {
    background: transparent;
    color: #283618;
    border: 1px solid transparent;
}

.btn-ut-ghost:hover {
    background: rgba(40, 54, 24, 0.1);
    border-color: #283618;
}

/* Gradient Buttons */
.btn-ut-gradient-1 {
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    color: #FEFAE0;
    border: none;
}

.btn-ut-gradient-1:hover {
    background: linear-gradient(135deg, #283618 0%, #606C38 100%);
    transform: translateY(-2px);
}

.btn-ut-gradient-2 {
    background: linear-gradient(135deg, #FFB703 0%, #BC6C25 100%);
    color: #283618;
    border: none;
}

.btn-ut-gradient-2:hover {
    background: linear-gradient(135deg, #BC6C25 0%, #FFB703 100%);
    color: #FEFAE0;
    transform: translateY(-2px);
}

/* Size Variations */
.btn-ut-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    min-width: 80px;
}

.btn-ut-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    min-width: 160px;
}

.btn-ut-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
    min-width: 200px;
}

/* Shape Variations */
.btn-ut-rounded {
    border-radius: 25px;
}

.btn-ut-square {
    border-radius: 4px;
}

.btn-ut-pill {
    border-radius: 50px;
}

/* Special Effects */
.btn-ut-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ut-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ut-ripple:active::before {
    width: 300px;
    height: 300px;
}

.btn-ut-glow {
    position: relative;
}

.btn-ut-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-ut-glow:hover::after {
    opacity: 0.6;
}

/* Contact Detail Modal Custom Styling */
#contactDetailModal .modal-header {
    background: linear-gradient(135deg, #283618 0%, #606C38 100%);
    border-bottom: 1px solid #BC6C25;
    color: #FEFAE0;
}

#contactDetailModal .modal-title {
    font-weight: 600;
    color: #FEFAE0;
}

#contactDetailModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#contactDetailModal .btn-close:hover {
    opacity: 1;
}

#contactDetailModal .card-header {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

#contactDetailModal .card-header.bg-primary {
    background: linear-gradient(135deg, #283618 0%, #606C38 100%) !important;
    color: #FEFAE0;
    border-bottom: 1px solid #BC6C25;
}

#contactDetailModal .form-label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: #283618;
    font-weight: 600;
}

#contactDetailModal .card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(40, 54, 24, 0.1);
    border: 1px solid rgba(188, 108, 37, 0.2);
}

#contactDetailModal .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
}

#contactDetailModal .badge.bg-warning {
    background: linear-gradient(135deg, #FFB703 0%, #BC6C25 100%) !important;
    color: #283618;
    border: 1px solid rgba(188, 108, 37, 0.3);
}

#contactDetailModal .badge.bg-info {
    background: linear-gradient(135deg, #606C38 0%, #283618 100%) !important;
    color: #FEFAE0;
}

#contactDetailModal .badge.bg-success {
    background: linear-gradient(135deg, #BC6C25 0%, #FFB703 100%) !important;
    color: #283618;
}

#contactDetailModal code {
    background-color: rgba(96, 108, 56, 0.1);
    border: 1px solid rgba(96, 108, 56, 0.3);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.875rem;
    color: #283618;
}

/* Contact info cards styling */
#contactDetailModal .bg-light {
    transition: all 0.3s ease;
    border: 2px solid rgba(188, 108, 37, 0.2) !important;
    background: rgba(254, 250, 224, 0.5) !important;
    position: relative;
    overflow: hidden;
}

#contactDetailModal .bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB703, transparent);
    transition: left 0.5s ease;
}

#contactDetailModal .bg-light:hover {
    background: rgba(255, 183, 3, 0.15) !important;
    border-color: rgba(188, 108, 37, 0.4) !important;
    box-shadow: 0 8px 25px rgba(188, 108, 37, 0.2);
    transform: translateY(-3px);
}

#contactDetailModal .bg-light:hover::before {
    left: 100%;
}

#contactDetailModal .bg-light a {
    color: #283618;
    text-decoration: none;
    font-weight: 600;
}

#contactDetailModal .bg-light a:hover {
    color: #BC6C25;
}

#contactDetailModal .bg-light i {
    color: #606C38;
}

/* Small action buttons in contact cards */
#contactDetailModal .bg-light .btn-sm {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-width: 2px;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contactDetailModal .bg-light .btn-outline-primary {
    color: #283618;
    border-color: #283618;
    background: transparent;
}

#contactDetailModal .bg-light .btn-outline-primary:hover {
    background: linear-gradient(135deg, #283618 0%, #606C38 100%);
    border-color: #283618;
    color: #FEFAE0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 54, 24, 0.3);
}

#contactDetailModal .bg-light .btn-outline-info {
    color: #606C38;
    border-color: #606C38;
    background: transparent;
}

#contactDetailModal .bg-light .btn-outline-info:hover {
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    border-color: #606C38;
    color: #FEFAE0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 108, 56, 0.3);
}

/* Message content area */
#contactDetailModal .card-body .bg-light {
    border: 2px solid rgba(96, 108, 56, 0.2) !important;
    background: rgba(254, 250, 224, 0.3) !important;
}

/* Modal Footer */
#contactDetailModal .modal-footer {
    background: rgba(254, 250, 224, 0.5);
    border-top: 1px solid rgba(188, 108, 37, 0.3);
}

/* Action buttons in footer */
#contactDetailModal .btn-primary {
    background: linear-gradient(135deg, #283618 0%, #606C38 100%);
    border: none;
    color: #FEFAE0;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 54, 24, 0.3);
}

#contactDetailModal .btn-primary:hover {
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 54, 24, 0.4);
}

#contactDetailModal .btn-success {
    background: linear-gradient(135deg, #FFB703 0%, #BC6C25 100%);
    border: none;
    color: #283618;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
}

#contactDetailModal .btn-success:hover {
    background: linear-gradient(135deg, #BC6C25 0%, #FFB703 100%);
    color: #FEFAE0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

#contactDetailModal .btn-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    color: #FEFAE0;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

#contactDetailModal .btn-danger:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

#contactDetailModal .btn-secondary {
    background: rgba(96, 108, 56, 0.1);
    color: #606C38;
    border: 2px solid rgba(96, 108, 56, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#contactDetailModal .btn-secondary:hover {
    background: rgba(96, 108, 56, 0.2);
    border-color: #606C38;
    color: #283618;
    transform: translateY(-1px);
}

/* Accordion styling */
#contactDetailModal .accordion-button {
    font-size: 0.9rem;
    font-weight: 600;
    color: #283618;
    background: rgba(254, 250, 224, 0.5);
    border: 1px solid rgba(188, 108, 37, 0.3);
}

#contactDetailModal .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(188, 108, 37, 0.2));
    color: #283618;
    border-color: rgba(188, 108, 37, 0.4);
    box-shadow: 0 2px 8px rgba(188, 108, 37, 0.2);
}

#contactDetailModal .accordion-body {
    background: rgba(254, 250, 224, 0.3);
    border-top: 1px solid rgba(188, 108, 37, 0.2);
}

.badge.info {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}


/* Icon Buttons */
.btn-ut-icon-only {
    width: 48px;
    height: 48px;
    min-width: unset;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ut-icon-left {
    padding-left: 16px;
}

.btn-ut-icon-right {
    padding-right: 16px;
}

/* Loading State */
.btn-ut-loading {
    position: relative;
    color: transparent !important;
}

.btn-ut-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Disabled State */
.btn-ut:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-ut:disabled:hover {
    background: initial;
    color: initial;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-ut-pulse {
    animation: pulse 2s infinite;
}

/* Toggle Buttons */
.btn-ut-toggle {
    background: #FEFAE0;
    color: #283618;
    border: 2px solid #606C38;
}

.btn-ut-toggle.active {
    background: #606C38;
    color: #FEFAE0;
}


/* Contact Page Styles */
.kontak-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    color: #FEFAE0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.kontak-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FEFAE0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 183, 3, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 183, 3, 0.3);
    backdrop-filter: blur(10px);
}

.header-badge span {
    color: #FFB703;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FEFAE0;
    line-height: 1.1;
}

.header-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(254, 250, 224, 0.9);
    margin-bottom: 2.5rem;
}

.quick-contact-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.quick-contact-stats .stat-item {
    text-align: center;
}

.quick-contact-stats .stat-number {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-contact-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(254, 250, 224, 0.8);
    font-weight: 500;
}

.header-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 183, 3, 0.2);
    position: relative;
    overflow: hidden;
}

.header-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB703, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.emergency-contact {
    text-align: center;
    padding: 2rem;
    background: rgba(188, 108, 37, 0.2);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(188, 108, 37, 0.3);
}

.emergency-contact h3 {
    color: #FFB703;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.emergency-contact p {
    color: rgba(254, 250, 224, 0.8);
    margin-bottom: 1.5rem;
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #BC6C25;
    color: #FEFAE0;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(188, 108, 37, 0.3);
}

.emergency-button:hover {
    background: #FFB703;
    color: #283618;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(188, 108, 37, 0.4);
}

.emergency-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(254, 250, 224, 0.7);
    font-style: italic;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 183, 3, 0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #283618;
    flex-shrink: 0;
}

.method-info h4 {
    color: #FFB703;
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.method-info p {
    color: rgba(254, 250, 224, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Main Section */
.contact-main {
    padding: 6rem 2rem;
    background: #FEFAE0;
}

.map-section {
    margin-bottom: 4rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(96, 108, 56, 0.1);
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    height: 100%;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #283618;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFB703, #BC6C25);
    border-radius: 2px;
}

.card-subtitle {
    color: rgba(40, 54, 24, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(96, 108, 56, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #606C38, #283618);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FEFAE0;
    flex-shrink: 0;
}

.info-content h4 {
    color: #283618;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.info-content p {
    color: rgba(40, 54, 24, 0.8);
    margin: 0;
    line-height: 1.6;
}

.info-content p.highlight {
    color: #BC6C25;
    font-weight: 600;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #283618;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #606C38;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(96, 108, 56, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #283618;
}

.form-control:focus {
    outline: none;
    border-color: #606C38;
    background: white;
    box-shadow: 0 0 0 3px rgba(96, 108, 56, 0.1);
}

.form-control::placeholder {
    color: rgba(40, 54, 24, 0.5);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .kontak-header {
        text-align: center;
        padding: 6rem 2rem 4rem;
    }

    .header-content {
        margin-bottom: 3rem;
    }

    .header-title {
        font-size: 2.5rem;
    }

    .quick-contact-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .kontak-header {
        padding: 4rem 1rem 3rem;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-contact-card {
        padding: 2rem;
    }

    .emergency-contact {
        padding: 1.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .quick-contact-stats {
        gap: 1rem;
    }

    .quick-contact-stats .stat-item {
        flex: 1;
    }
}

/* About Page Styles */
.tentang-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #606C38 0%, #283618 100%);
    color: #FEFAE0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tentang-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 100 100"><defs><pattern id="aboutgrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FEFAE0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutgrain)"/></svg>');
    pointer-events: none;
}

.header-about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 183, 3, 0.2);
    position: relative;
    overflow: hidden;
}

.header-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB703, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.mission-highlight {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 183, 3, 0.3);
}

.mission-highlight h3 {
    color: #FFB703;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.mission-highlight p {
    color: rgba(254, 250, 224, 0.9);
    margin: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 183, 3, 0.3);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #283618;
    flex-shrink: 0;
}

.feature-info h4 {
    color: #FFB703;
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.feature-info p {
    color: rgba(254, 250, 224, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* About Main Section */
.tentang-main {
    padding: 6rem 2rem;
    background: #FEFAE0;
}

.vmv-section,
.team-section,
.achievements-section {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #283618;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFB703, #BC6C25);
    border-radius: 2px;
}

.section-header p {
    color: rgba(40, 54, 24, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* VMV Cards */
.vmv-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 183, 3, 0.3);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #606C38, #283618);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FEFAE0;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(96, 108, 56, 0.3);
}

.vmv-card h3 {
    color: #283618;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vmv-card p {
    color: rgba(40, 54, 24, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-list ul {
    text-align: left;
    padding-left: 1rem;
    margin-top: 1rem;
}

.mission-list li {
    color: rgba(40, 54, 24, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.values-list {
    text-align: left;
}

.value-item {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FFB703;
}

.value-item strong {
    color: #606C38;
    font-weight: 600;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 183, 3, 0.3);
}

.team-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #283618;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.3);
}
.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #FEFAE0, #F4F3F0);
    border: 4px solid #FFB703;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.15);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* prevents distortion and cropping to fill */
    border-radius: 50%;
}

/* Responsive avatar sizes */
@media (max-width: 768px) {
    .team-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .team-avatar {
        width: 88px;
        height: 88px;
    }
    .team-card {
        padding: 1.5rem;
    }
}

.team-card h4 {
    color: #283618;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-card p {
    color: rgba(40, 54, 24, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-link {
    color: #BC6C25;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-link:hover {
    color: #606C38;
}

/* Achievement Cards */
.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(96, 108, 56, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 183, 3, 0.3);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #BC6C25, #FFB703);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #283618;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(188, 108, 37, 0.3);
}

.achievement-card h4 {
    color: #283618;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}

.stat {
    padding: 1rem;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 12px;
}

.stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #BC6C25;
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 0.9rem;
    color: rgba(40, 54, 24, 0.8);
    font-weight: 500;
}

.achievement-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.achievement-list li {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    background: rgba(96, 108, 56, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FFB703;
    color: rgba(40, 54, 24, 0.8);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #283618 0%, #606C38 100%);
    color: #FEFAE0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-notice {
    background: rgba(255, 183, 3, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 183, 3, 0.3);
    backdrop-filter: blur(10px);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFB703, #BC6C25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #283618;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.3);
}

.privacy-notice h3 {
    color: #FFB703;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-notice p {
    color: rgba(254, 250, 224, 0.9);
    line-height: 1.7;
    margin: 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FEFAE0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(254, 250, 224, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 991px) {
    .tentang-header {
        text-align: center;
        padding: 6rem 2rem 4rem;
    }

    .header-content {
        margin-bottom: 3rem;
    }

    .header-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tentang-header {
        padding: 4rem 1rem 3rem;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-about-card {
        padding: 2rem;
    }

    .mission-highlight {
        padding: 1.5rem;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .vmv-card,
    .team-card,
    .achievement-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-ut {
        width: 100%;
        max-width: 300px;
    }
}

.quick-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #FFF;
    border: 2px solid #283618;
    border-radius: 15px;
    color: #283618;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background 0.2s, color 0.2s;
    border: solid 0.5px black;
}

.menu-equal {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 100%;
    justify-content: center;
}

.quick-menu-item.active {
    background: #283618;
    color: #FFF6E0;
    box-shadow: 0 4px 16px rgba(40, 54, 24, 0.12);
    border: none;
}

.quick-menu-item .menu-item-icon {
    font-size: 2rem;
}

.quick-menu-item.active .menu-item-icon {
    color: #FFF6E0;
}

.sidebar-active {
    border-radius: 15px;
    border-left: 4px solid #FFB703;
    background: #fff;
    padding: 1rem;
}

.vh-60 {
    height: 60vh;
}

.pengaturan-content {
    border: solid 1px black;
    border-radius: 10px;
}