/* Muza Project - Consolidated CSS */

:root {
    /* Primary Colors - dari logo */
    --sage-primary: #B8C4A0;
    /* Hijau sage utama dari logo */
    --sage-light: #D4E0C4;
    /* Sage terang untuk background */
    --sage-dark: #9BAA85;
    /* Sage gelap untuk hover states */

    --brown-primary: #B8845C;
    /* Coklat utama dari logo */
    --brown-light: #D4A882;
    /* Coklat terang untuk accents */
    --brown-dark: #9B6B3F;
    /* Coklat gelap untuk text */

    /* Supporting Colors */
    --cream: #F8F6F3;
    /* Background terang */
    --off-white: #FEFEFE;
    /* Pure background */
    --text-dark: #2C2C2C;
    /* Text utama */
    --text-muted: #6C6C6C;
    /* Text secondary */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    opacity: 0.7;
    /* Initial state for smooth loading */
    transition: opacity 0.3s ease, background-color 0.3s ease;
    padding-top: 80px;
    /* Space for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Button Styles */
.btn-primary {
    background-color: var(--sage-primary);
    border-color: var(--sage-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
}

.btn-outline-primary {
    color: var(--sage-primary);
    border-color: var(--sage-primary);
}

.btn-outline-primary:hover {
    background-color: var(--sage-primary);
    border-color: var(--sage-primary);
}

/* Utility Classes */
.text-primary {
    color: var(--sage-primary) !important;
}

.text-brown {
    color: var(--brown-primary) !important;
}

.bg-primary {
    background-color: var(--sage-primary) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.welcome-hero-section {
    background: linear-gradient(135deg, var(--sage-primary), var(--brown-primary));
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-image-circle {
    background: linear-gradient(135deg, var(--sage-primary) 0%, var(--brown-primary) 100%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-circle i {
    font-size: 100px;
}

.hero-stats-circle {
    background: linear-gradient(45deg, var(--sage-light) 0%, var(--brown-light) 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats-circle i {
    font-size: 80px;
    color: var(--brown-dark);
}

.hero-stats-rectangle {
    background: linear-gradient(45deg, var(--sage-light) 0%, var(--brown-light) 100%);
    width: 350px;
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats-rectangle i {
    font-size: 80px;
    color: var(--brown-dark);
}

/* Navigation */
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--brown-primary) !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    max-height: 30px;
    width: auto;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--sage-primary) !important;
}

.navbar-nav .nav-link.active {
    color: var(--sage-primary) !important;
    font-weight: 600;
}

/* Footer */
.footer-logo {
    max-height: 40px;
    width: auto;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.brand-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--brown-primary);
}

.brand-text h5 {
    font-size: 14px;
    line-height: 1.1;
}

/* Logo styling */
.navbar-brand img,
.footer-logo {
    max-width: 100%;
    height: auto;
}

/* Feature Icons */
.feature-icon {
    background: var(--sage-light);
    color: var(--brown-primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

/* Test Assets Page Styles */
.color-palette {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-sample {
    width: 50px;
    height: 50px;
    border-radius: 4px;
}

.color-sample.sage {
    background: #B8C4A0;
}

.color-sample.brown {
    background: #B8845C;
}

.color-sample.sage-light {
    background: #D4E0C4;
}

.color-sample.sage-dark {
    background: #9BAA85;
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.responsive-item {
    padding: 20px;
    text-align: center;
    color: white;
    border-radius: 4px;
}

.responsive-item.mobile {
    background: #B8C4A0;
}

.responsive-item.tablet {
    background: #B8845C;
}

.responsive-item.desktop {
    background: #9BAA85;
}

/* 404 Error Page Styles */
.error-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Floating Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(184, 196, 160, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Error Card */
.error-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Error Icon */
.error-icon-container {
    margin-bottom: 1rem;
}

.error-icon {
    font-size: 4rem;
    color: var(--sage-primary);
    opacity: 0.7;
}

/* Error Number */
.error-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sage-primary), var(--brown-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Error Title */
.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--brown-primary);
    margin-bottom: 1rem;
}

/* Error Description */
.error-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    margin: 2rem 0;
}

.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--sage-light);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--sage-primary);
    box-shadow: 0 0 0 0.2rem rgba(184, 196, 160, 0.25);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--sage-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--sage-dark);
    transform: translateY(-50%) scale(1.05);
}

/* Search Suggestions */
.search-suggestions {
    text-align: center;
}

.search-suggestion-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.suggestion-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: var(--sage-light);
    color: var(--sage-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--sage-primary);
    color: white;
    transform: translateY(-2px);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    /* opacity: 0; */
    transform: translateY(1px);
    animation: fadeInUp 0.6s ease forwards;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Section */
.navigation-section {
    margin: 2rem 0;
}

.section-title h5 {
    color: var(--brown-primary);
    font-weight: 600;
    text-align: center;
}

/* Navigation Cards */
.nav-card {
    display: block;
    background: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.nav-card:hover {
    border-color: var(--sage-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.nav-icon {
    background: linear-gradient(135deg, var(--sage-primary), var(--brown-primary));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 1.2rem;
}

.nav-card h6 {
    color: var(--brown-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.nav-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    text-align: center;
}

/* Help Section */
.help-section {
    margin-top: 2rem;
}

.help-card {
    background: rgba(184, 196, 160, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(184, 196, 160, 0.2);
}

.help-icon {
    background: var(--sage-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.help-content h6 {
    color: var(--brown-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.help-content p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* Debug Info */
.debug-info .alert {
    background: rgba(184, 196, 160, 0.1);
    border: 1px solid rgba(184, 196, 160, 0.3);
}

.debug-details {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 250px;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
    }

    .nav-card {
        margin-bottom: 1rem;
    }
}

/* Portfolio Styles */
.filter-buttons .btn {
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.filter-buttons .btn.active {
    background-color: var(--sage-primary);
    border-color: var(--sage-primary);
    color: white;
}

.project-card {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.hover-overlay {
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.placeholder-image {
    height: 200px;
    border-radius: 12px 12px 0 0;
}

.technologies .badge {
    font-size: 0.75rem;
}

.filter-buttons {
    margin-bottom: 2rem;
}

/* Services Page Styles */

/* Hero Section Enhancements */
.hero-content .badge {
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-item small {
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8845C 0%, #9BAA85 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(184, 132, 92, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-circle-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-circle-inner i {
    font-size: 3rem;
}

.floating-card {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.decoration-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.decoration-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Service Cards Enhancements */
.service-card-modern {
    perspective: 1000px;
}

.service-card-inner {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card-modern:hover .service-card-inner {
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, #B8845C 0%, #9BAA85 100%) !important;
    border: none !important;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.service-icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon {
    font-size: 2rem;
    color: white;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-badge {
    display: inline-block;
    background: rgba(184, 132, 92, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(184, 132, 92, 0.2);
}

.features-preview {
    text-align: left;
}

.feature-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 2px;
    border: 1px solid #e9ecef;
}

.feature-tag.more-features {
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
}

.card-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Service Image Section */
.service-image-section {
    text-align: center;
    margin-bottom: 2rem;
}

.service-image-section img {
    max-height: 300px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-card-modern {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card-inner {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-inner:hover {
    background: white;
    border-color: rgba(184, 132, 92, 0.3);
    box-shadow: 0 5px 15px rgba(184, 132, 92, 0.1);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8845C 0%, #9BAA85 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(184, 132, 92, 0.3);
}

.feature-text {
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Price Section Enhancements */
.price-card {
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B8845C 0%, #9BAA85 100%);
}

.price-icon {
    opacity: 0.8;
}

.price-details {
    border-top: 1px solid rgba(184, 132, 92, 0.2);
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Timeline Container */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container .timeline-modern {
    padding-left: 60px;
}

.timeline-container .timeline-modern::before {
    left: 30px;
}

.timeline-container .timeline-marker-modern {
    left: -45px;
    width: 20px;
    height: 20px;
    border: 5px solid white;
    box-shadow: 0 0 0 4px rgba(184, 132, 92, 0.2);
}

.timeline-container .timeline-content-modern {
    padding: 2rem;
    margin-bottom: 2rem;
}

.timeline-container .timeline-header h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container .timeline-modern {
        padding-left: 40px;
    }

    .timeline-container .timeline-modern::before {
        left: 20px;
    }

    .timeline-container .timeline-marker-modern {
        left: -30px;
        width: 16px;
        height: 16px;
        border: 4px solid white;
        box-shadow: 0 0 0 3px rgba(184, 132, 92, 0.2);
    }

    .timeline-container .timeline-content-modern {
        padding: 1.5rem;
    }

    .timeline-container .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .timeline-container .timeline-header h5 {
        font-size: 1.1rem;
    }
}

/* Timeline Modern */
.timeline-modern {
    position: relative;
    padding-left: 40px;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #B8845C 0%, #9BAA85 50%, #B8C4A0 100%);
    border-radius: 2px;
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-item-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item-modern:nth-child(2) {
    animation-delay: 0.3s;
}

.timeline-item-modern:nth-child(3) {
    animation-delay: 0.5s;
}

.timeline-marker-modern {
    position: absolute;
    left: -30px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px rgba(184, 132, 92, 0.2);
}

.timeline-content-modern {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content-modern:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Benefits Section */
.benefits-section .benefit-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefits-section .benefit-item:hover {
    background: white !important;
    border-color: rgba(184, 132, 92, 0.2) !important;
    box-shadow: 0 5px 15px rgba(184, 132, 92, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Modal Enhancements */
.service-modal .modal-content {
    border-radius: 20px;
    border: none;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal .modal-header {
    border-radius: 20px 20px 0 0;
    padding: 2rem;
}

.service-modal .modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.service-modal .modal-footer {
    border-radius: 0 0 20px 20px;
    padding: 1.5rem 2rem;
}

/* Modal Styling - Matching Previous Design */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modal-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-icon-circle {
    font-size: 1.5rem;
    color: white;
}

.modal-body {
    padding: 2rem;
}

.service-description p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.price-card {
    border: 2px solid #e9ecef !important;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #B8845C !important;
    box-shadow: 0 0.5rem 1rem rgba(184, 132, 92, 0.15);
}

.price-icon {
    opacity: 0.8;
}

.price-details small {
    font-size: 0.85rem;
    line-height: 1.4;
}

.timeline-modern {
    position: relative;
    padding-left: 30px;
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.timeline-item-modern:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 25px;
    width: 2px;
    height: calc(100% - 25px);
    background: #e9ecef;
}

.timeline-marker-modern {
    position: absolute;
    left: -35px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-content-modern {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #B8C4A0;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
}

.bg-primary-soft {
    background-color: rgba(184, 196, 160, 0.1) !important;
    color: #B8C4A0 !important;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
}

.benefit-item {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Blog Page Styles */
.bg-gradient-primary {
    background: linear-gradient(135deg, #B8C4A0 0%, #B8845C 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #D4E0C4 0%, #B8C4A0 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #B8C4A0 0%, #D4A882 100%);
}

.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.search-box .input-group {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.blog-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.gradient-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    height: 100%;
    width: 100%;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.social-link {
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #B8C4A0 !important;
}

.featured-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.empty-state i {
    opacity: 0.5;
}

.category-filter .btn.active {
    background-color: #B8C4A0;
    border-color: #B8C4A0;
    color: white;
}

.category-filter .btn-outline-primary {
    color: #B8C4A0;
    border-color: #B8C4A0;
}

.category-filter .btn-outline-primary:hover {
    background-color: #B8C4A0;
    border-color: #B8C4A0;
}

.tag-cloud .badge:hover {
    background-color: #B8C4A0 !important;
    color: white !important;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .search-box .input-group {
        max-width: 100%;
    }

    .category-filter {
        justify-content: center !important;
    }
}

/* Keyframe Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Pages Styling */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(184, 196, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(184, 132, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.error-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(184, 196, 160, 0.2);
    max-width: 800px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-primary), var(--brown-primary));
}

.error-icon-container {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s;
    animation-fill-mode: both;
}

.error-icon {
    font-size: 4rem;
    color: var(--brown-primary);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.error-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-dark);
    background: linear-gradient(45deg, var(--sage-primary), var(--brown-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s infinite, fadeInUp 0.6s ease-out 0.3s;
    animation-fill-mode: both;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s;
    animation-fill-mode: both;
}

.error-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.5s;
    animation-fill-mode: both;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.action-btn:nth-child(1) {
    animation-delay: 0.7s;
}

.action-btn:nth-child(2) {
    animation-delay: 0.8s;
}

.action-btn.btn-primary {
    background: var(--sage-primary);
    color: white;
    border: 2px solid var(--sage-primary);
}

.action-btn.btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 132, 92, 0.3);
    opacity: 1 !important;
}

.action-btn.btn-outline-primary {
    color: var(--brown-primary);
    border: 2px solid var(--brown-primary);
}

.action-btn.btn-outline-primary:hover {
    background: var(--brown-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 132, 92, 0.3);
    opacity: 1 !important;
}

.navigation-section {
    margin-bottom: 3rem;
}

.section-title h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.nav-card {
    display: block;
    background: var(--off-white);
    border: 1px solid rgba(184, 196, 160, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.nav-card:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-card:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-card:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-card:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-card:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-card:nth-child(6) {
    animation-delay: 0.6s;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 20px rgba(184, 196, 160, 0.4);
    border-color: var(--sage-primary);
}

.nav-icon {
    width: 50px;
    height: 50px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--sage-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-card:hover .nav-icon {
    background: var(--sage-primary);
    color: white;
    transform: scale(1.1);
}

.nav-card h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.nav-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.help-section {
    margin-top: 3rem;
}

.help-card {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 50%);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(184, 196, 160, 0.3);
    animation: fadeInUp 0.6s ease-out 0.9s;
    animation-fill-mode: both;
}

.help-icon {
    width: 60px;
    height: 60px;
    background: var(--brown-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.help-content h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.help-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.help-content .btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .error-card {
        padding: 2rem;
        margin: 1rem;
    }

    .error-number {
        font-size: 4rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .ms-auto {
        margin-left: 10px !important;
    }
}

.nav-item {
    list-style-type: none;
    margin-left: inherit;
}

.breadcrumb-item {
    list-style-type: none;
    margin-left: inherit;
}